diff options
author | das <das> | 2008-08-13 23:04:46 (GMT) |
---|---|---|
committer | das <das> | 2008-08-13 23:04:46 (GMT) |
commit | 03615a17319668118dfcd0a4eb37ef37b7c1f018 (patch) | |
tree | c80ab56bd9c5c94659758bddf7076bc8c1f507c3 /unix/tcl.m4 | |
parent | b1e127233cfa6b7589c0eb9422a358c4ebf37061 (diff) | |
download | tk-03615a17319668118dfcd0a4eb37ef37b7c1f018.zip tk-03615a17319668118dfcd0a4eb37ef37b7c1f018.tar.gz tk-03615a17319668118dfcd0a4eb37ef37b7c1f018.tar.bz2 |
* unix/tcl.m4 (SC_PATH_X): check for libX11.dylib in addition to
libX11.so et al.
Diffstat (limited to 'unix/tcl.m4')
-rw-r--r-- | unix/tcl.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/tcl.m4 b/unix/tcl.m4 index 6948c98..2231cd7 100644 --- a/unix/tcl.m4 +++ b/unix/tcl.m4 @@ -2473,7 +2473,7 @@ AC_DEFUN([SC_PATH_X], [ XLIBSW=nope dirs="/usr/unsupported/lib /usr/local/lib /usr/X386/lib /usr/X11R6/lib /usr/X11R5/lib /usr/lib/X11R5 /usr/lib/X11R4 /usr/openwin/lib /usr/X11/lib /usr/sww/X11/lib" for i in $dirs ; do - if test -r $i/libX11.a -o -r $i/libX11.so -o -r $i/libX11.sl; then + if test -r $i/libX11.a -o -r $i/libX11.so -o -r $i/libX11.sl -o -r $i/libX11.dylib; then AC_MSG_RESULT([$i]) XLIBSW="-L$i -lX11" x_libraries="$i" |