diff options
author | das <das> | 2007-06-29 03:18:33 (GMT) |
---|---|---|
committer | das <das> | 2007-06-29 03:18:33 (GMT) |
commit | 8d504208df89450f9abc23fc7f9e7a7280378fcd (patch) | |
tree | 5b4f6d9f6fa403a63f9680e17cb2da66a908cb83 /unix/configure.in | |
parent | 77ee21b68bf5c7e7e8b0c3caa4bd77dc0fa38673 (diff) | |
download | tk-8d504208df89450f9abc23fc7f9e7a7280378fcd.zip tk-8d504208df89450f9abc23fc7f9e7a7280378fcd.tar.gz tk-8d504208df89450f9abc23fc7f9e7a7280378fcd.tar.bz2 |
* unix/configure.in: fix flag used to weak-link libXss.
* unix/configure: autoconf-2.59
Diffstat (limited to 'unix/configure.in')
-rw-r--r-- | unix/configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/configure.in b/unix/configure.in index d57a077..cb9e2c6 100644 --- a/unix/configure.in +++ b/unix/configure.in @@ -3,7 +3,7 @@ dnl This file is an input file used by the GNU "autoconf" program to dnl generate the file "configure", which is run during Tk installation dnl to configure the system for the local environment. # -# RCS: @(#) $Id: configure.in,v 1.135 2007/06/06 09:55:22 das Exp $ +# RCS: @(#) $Id: configure.in,v 1.136 2007/06/29 03:18:34 das Exp $ AC_INIT([tk],[8.5]) AC_PREREQ(2.59) @@ -400,7 +400,7 @@ if test $tk_aqua = no; then if test "$tcl_cv_ld_weak_l" = yes; then # On Darwin, weak link libXss if possible, # as it is only available on Tiger or later. - XLIBSW="$XLIBSW -weak-lXss -lXext" + XLIBSW="$XLIBSW -Wl,-weak-lXss -lXext" else XLIBSW="$XLIBSW -lXss -lXext" fi |