summaryrefslogtreecommitdiff
path: root/graphics/graphviz/files/patch-configure
diff options
context:
space:
mode:
authorDirk Meyer <dinoex@FreeBSD.org>2019-09-23 11:21:17 +0000
committerDirk Meyer <dinoex@FreeBSD.org>2019-09-23 11:21:17 +0000
commitdcef20b4de0a34bb9b74ba67f8c94658e6aa88d5 (patch)
tree7e73c5c4cd309b1dc75a49d62b9e0bcb136f39e7 /graphics/graphviz/files/patch-configure
parenttextproc/bat: Update to 0.12.1 (diff)
- update to 2.42.2
- change MASTER_SITES - add webp support - use automake - sort plist
Notes
Notes: svn path=/head/; revision=512625
Diffstat (limited to 'graphics/graphviz/files/patch-configure')
-rw-r--r--graphics/graphviz/files/patch-configure48
1 files changed, 0 insertions, 48 deletions
diff --git a/graphics/graphviz/files/patch-configure b/graphics/graphviz/files/patch-configure
deleted file mode 100644
index 8133ff3f7ec4..000000000000
--- a/graphics/graphviz/files/patch-configure
+++ /dev/null
@@ -1,48 +0,0 @@
---- configure.orig 2016-12-25 03:04:52 UTC
-+++ configure
-@@ -18067,6 +18067,9 @@ test -n "$RC" || RC="false"
- CFLAGS="${CFLAGS} -fno-common -Wall"
- LDFLAGS="${LDFLAGS} -Wl,-headerpad_max_install_names"
- ;;
-+ *alpha*-freebsd* )
-+ CFLAGS="${CFLAGS} -Wstrict-prototypes -Wpointer-arith -Wall"
-+ ;;
- *-freebsd* )
- CFLAGS="${CFLAGS} -Wstrict-prototypes -Wpointer-arith -Wall -ffast-math"
- ;;
-@@ -20954,7 +20957,7 @@ done
- if test "x$GUILE" = "x"; then
- use_guile="No (guile not available)"
- else
-- GUILE_VERSION=`$GUILE --version | sed -n '1 s/^.* \+\([0-9\.]\+\)$/\1/ p'`
-+ GUILE_VERSION=`$GUILE --version | sed -n '1 s/^.* \([0-9\.]*\)$/\1/ p'`
- GUILE_VERSION_MAJOR=`echo $GUILE_VERSION | cut -d '.' -f 1`
- GUILE_VERSION_MINOR=`echo $GUILE_VERSION | cut -d '.' -f 2`
- if test 0$GUILE_VERSION_MAJOR -lt 2; then
-@@ -21522,7 +21525,9 @@ fi
-
- LUA_INCLUDES=""
- LUA_LIBS=""
-- LUA_INSTALL_DIR=""
-+ if test -z "$LUA_INSTALL_DIR" ; then
-+ LUA_INSTALL_DIR=""
-+ fi
-
- if test -n "$lua_inc"; then
- CFLAGS="$CFLAGS -I$lua_inc"
-@@ -21584,13 +21589,13 @@ $as_echo_n "checking for Lua headers and
- pkgconfig_lua_found=`$PKGCONFIG --exists lua$l 2>/dev/null`
- if test "x$?" = "x0" ; then
- LUA_VERSION=`$PKGCONFIG --modversion lua$l`
-- LUA_INCLUDES="$LUA_CFLAGS "`$PKGCONFIG --cflags lua$l`
-+ LUA_INCLUDES="$LUA_CFLAGS "`$PKGCONFIG --cflags-only-I lua$l`
- LUA_LIBS="$LUA_LFLAGS "`$PKGCONFIG --libs lua$l`
- LUA_INSTALL_DIR="/usr/lib$LIBPOSTFIX/lua/`$PKGCONFIG --variable=V lua`"
-
- pkgconfig_lualib_found=`$PKGCONFIG --exists lualib$l 2>/dev/null`
- if test "x$?" = "x0"; then
-- LUA_INCLUDES="$LUA_CFLAGS "`$PKGCONFIG --cflags lualib$l`
-+ LUA_INCLUDES="$LUA_CFLAGS "`$PKGCONFIG --cflags-only-I lualib$l`
- LUA_LIBS="$LUA_LFLAGS "`$PKGCONFIG --libs lualib$l`
- fi
- break