diff options
author | edwin <edwin@FreeBSD.org> | 2002-11-15 15:03:00 +0800 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2002-11-15 15:03:00 +0800 |
commit | 5c83f16877127aae7343033b3281cb958c6e3828 (patch) | |
tree | 584b64e7441eb9520a0f4b8a5b410c6448fb5634 | |
parent | 9c71cc74227b0c95ad19f6b6ca5df1b8c72e969d (diff) | |
download | freebsd-ports-gnome-5c83f16877127aae7343033b3281cb958c6e3828.tar.gz freebsd-ports-gnome-5c83f16877127aae7343033b3281cb958c6e3828.tar.zst freebsd-ports-gnome-5c83f16877127aae7343033b3281cb958c6e3828.zip |
Make desktutils/ical building again.
This was a tricky thing and I suspect this is caused by the new
tcl83 package rolled out. What happens is that lib/tcl8.3/tclConfig.sh
has this line in it:
TCL_LIB_FILE='libtcl83${TCL_DBGX}.so.1'
The single ticks TCL_DBGX not to be expanded, that's okay. But the
configure-script didn't evaluate the variable once it got it from
the tclConfig.sh script.
Noticed by: bento
-rw-r--r-- | deskutils/ical/files/patch-configure | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/deskutils/ical/files/patch-configure b/deskutils/ical/files/patch-configure new file mode 100644 index 000000000000..57a368d08057 --- /dev/null +++ b/deskutils/ical/files/patch-configure @@ -0,0 +1,11 @@ +--- configure.orig Fri Nov 15 17:59:05 2002 ++++ configure Fri Nov 15 17:59:20 2002 +@@ -1327,6 +1327,8 @@ + #### Load the Tcl/Tk configuration files + . $tclconfig/tclConfig.sh + . $tkconfig/tkConfig.sh ++TCL_LIB_FILE=`eval "echo ${TCL_LIB_FILE}"` ++TK_LIB_FILE=`eval "echo ${TK_LIB_FILE}"` + + if test -z "$TCL_EXEC_PREFIX"; then TCL_EXEC_PREFIX="$TCL_PREFIX"; fi + if test -z "$TK_EXEC_PREFIX"; then TK_EXEC_PREFIX="$TK_PREFIX"; fi |