diff options
author | hobbs <hobbs@noemail.net> | 1999-09-02 17:03:22 (GMT) |
---|---|---|
committer | hobbs <hobbs@noemail.net> | 1999-09-02 17:03:22 (GMT) |
commit | 9cf5848e77a88cc08e7a4e5f35187f7d34f532ec (patch) | |
tree | 6fdffdab6de9dd6b92752b9d8df7f6d10e396ecc /unix/aclocal.m4 | |
parent | c93735af66d766ecb2e2c043cafd0885340c718c (diff) | |
download | tk-9cf5848e77a88cc08e7a4e5f35187f7d34f532ec.zip tk-9cf5848e77a88cc08e7a4e5f35187f7d34f532ec.tar.gz tk-9cf5848e77a88cc08e7a4e5f35187f7d34f532ec.tar.bz2 |
* win/tkWinDraw.c:
* unix/tkUnixDraw.c: fixed header style for TkpDrawHighlightBorder
* generic/tkCanvas.c: fixed GC error (bg <> fg) in tkCanvas.c
(from code added to support TkpDrawHighlightBorder) [Bug: 2676]
* unix/aclocal.m4: added -bnoentry to the AIX-* flags
FossilOrigin-Name: 3cf8a372fcc82ce1adb12643187e3a468bbd894b
Diffstat (limited to 'unix/aclocal.m4')
-rw-r--r-- | unix/aclocal.m4 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/aclocal.m4 b/unix/aclocal.m4 index eb24967..28b7796 100644 --- a/unix/aclocal.m4 +++ b/unix/aclocal.m4 @@ -563,7 +563,7 @@ AC_DEFUN(SC_CONFIG_CFLAGS, [ TCL_BUILD_EXP_FILE="" TCL_EXP_FILE="" case $system in - AIX-4.[[2-9]]) + AIX-4.[[1-9]]) SHLIB_CFLAGS="" SHLIB_LD="$fullSrcDir/ldAix /bin/ld -bhalt:4 -bM:SRE -bE:lib.exp -H512 -T512 -bnoentry" SHLIB_LD_LIBS='${LIBS}' @@ -577,7 +577,7 @@ AC_DEFUN(SC_CONFIG_CFLAGS, [ ;; AIX-*) SHLIB_CFLAGS="" - SHLIB_LD="$fullSrcDir/ldAix /bin/ld -bhalt:4 -bM:SRE -bE:lib.exp -H512 -T512" + SHLIB_LD="$fullSrcDir/ldAix /bin/ld -bhalt:4 -bM:SRE -bE:lib.exp -H512 -T512 -bnoentry" SHLIB_LD_LIBS='${LIBS}' SHLIB_SUFFIX=".so" DL_OBJS="tclLoadDl.o" |