diff options
author | dinoex <dinoex@FreeBSD.org> | 2008-04-03 23:42:36 +0800 |
---|---|---|
committer | dinoex <dinoex@FreeBSD.org> | 2008-04-03 23:42:36 +0800 |
commit | f1c81d814a2f9648f1707a7ab84fbec83b724077 (patch) | |
tree | 9ce0781d51cb0ab376030e92c5f4c1ae87e69f1b /graphics | |
parent | 9218c175ce542a2b36204e40d551bf74a3b6acbf (diff) | |
download | freebsd-ports-gnome-f1c81d814a2f9648f1707a7ab84fbec83b724077.tar.gz freebsd-ports-gnome-f1c81d814a2f9648f1707a7ab84fbec83b724077.tar.zst freebsd-ports-gnome-f1c81d814a2f9648f1707a7ab84fbec83b724077.zip |
- fix build for FreeBSD < 6.3
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/graphviz/Makefile | 4 | ||||
-rw-r--r-- | graphics/graphviz/files/patch-configure | 11 |
2 files changed, 11 insertions, 4 deletions
diff --git a/graphics/graphviz/Makefile b/graphics/graphviz/Makefile index b23f1fdabb74..4ff3c9158872 100644 --- a/graphics/graphviz/Makefile +++ b/graphics/graphviz/Makefile @@ -91,10 +91,6 @@ OPTIONS= ICONV "Build with ICONV support" on \ .include <bsd.port.pre.mk> -.if ${OSVERSION} <= 603000 -IGNORE= configure needs a newer sh -.endif - CONFIGURE_ARGS+= --program-transform-name="s/x/x/" \ --enable-dependency-tracking \ --enable-r=no \ diff --git a/graphics/graphviz/files/patch-configure b/graphics/graphviz/files/patch-configure new file mode 100644 index 000000000000..5c9c65a8f9b3 --- /dev/null +++ b/graphics/graphviz/files/patch-configure @@ -0,0 +1,11 @@ +--- configure.orig 2008-03-10 20:32:12.000000000 +0100 ++++ configure 2008-04-03 17:38:34.000000000 +0200 +@@ -34060,7 +34060,7 @@ + + # Check whether --with-platformsdkincludedir was given. + if test "${with_platformsdkincludedir+set}" = set; then +- withval=$with_platformsdkincludedir; PLATFORMSDKINCLUDE=$withval; PLATFORMSDKINCLUDE_ESCAPED=${PLATFORMSDKINCLUDE//'\\'/\\\\}; PLATFORMSDKINCLUDE_ESCAPED=${PLATFORMSDKINCLUDE_ESCAPED// /\\ } ++ withval=$with_platformsdkincludedir; PLATFORMSDKINCLUDE=$withval; PLATFORMSDKINCLUDE_ESCAPED=${PLATFORMSDKINCLUDE}; PLATFORMSDKINCLUDE_ESCAPED=${PLATFORMSDKINCLUDE_ESCAPED} + fi + + |