diff options
author | Dirk Meyer <dinoex@FreeBSD.org> | 2008-04-03 15:42:36 +0000 |
---|---|---|
committer | Dirk Meyer <dinoex@FreeBSD.org> | 2008-04-03 15:42:36 +0000 |
commit | ddacf348155356653fcfa560fed132faf5521944 (patch) | |
tree | 428d5b3db8391b7f3cc0b0b86a219b2872c7009e /graphics/graphviz | |
parent | - Fix error in deinstall message (diff) |
- fix build for FreeBSD < 6.3
Notes
Notes:
svn path=/head/; revision=210449
Diffstat (limited to 'graphics/graphviz')
-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 + + |