summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiane Bruce <db@FreeBSD.org>2007-09-28 21:49:09 +0000
committerDiane Bruce <db@FreeBSD.org>2007-09-28 21:49:09 +0000
commit43b6d7671f62bcbfa7218a94545e838996d7c990 (patch)
treeb588683a2eb10b4b9d37e81d8af9f34e4c2c5688
parentLLVM is believed to build on sparc64 on 6.x. I suspect a gcc 4.2 bug so mark (diff)
- Fix problem with build of port reported by linimon Sept 28 2007
Basically the port was relying on TCL_PACKAGE_PATH in tcllib/tclConfig.sh to be a single path with no trailing spaces. As of tcl84, TCL_PACKAGE_PATH can be a list. I patched e4graph configure to use TCL_PREFIX/lib instead. Discussed with: linimon
Notes
Notes: svn path=/head/; revision=200282
-rw-r--r--devel/e4graph/files/patch_all-configure19
1 files changed, 19 insertions, 0 deletions
diff --git a/devel/e4graph/files/patch_all-configure b/devel/e4graph/files/patch_all-configure
new file mode 100644
index 000000000000..117176d35620
--- /dev/null
+++ b/devel/e4graph/files/patch_all-configure
@@ -0,0 +1,19 @@
+--- all/configure.orig Fri Mar 5 20:56:14 2004
++++ all/configure Thu Sep 27 15:48:56 2007
+@@ -4478,12 +4478,16 @@
+ TCL_INC=${TCL_INCLUDE_SPEC}
+ TCL_STB=${TCL_STUB_LIB_SPEC}
+ TCL_PKG=${TCL_PACKAGE_PATH}/tcl${TCL_VERSION}
++ echo TCL_PACKAGE_PATH = "\"${TCL_PACKAGE_PATH}\""
++ echo TCL_VERSION = "\"${TCL_VERSION}\""
++ echo TCL_PKG = "\"${TCL_PKG}\""
+ echo "$ac_t""${TCL_INCLUDE_SPEC}" 1>&6
+ else
+ TCL_LIB="# No Tcl library found"
+ TCL_INC="# No tcl.h found"
+ TCL_STB="# No libtclstubs.a found"
+ TCL_PKG="# No TCL_PACKAGE_PATH found"
++ echo TCL_PKG = "\"${TCL_PKG}\""
+ echo "$ac_t""not found" 1>&6
+ fi
+