diff options
author | Clint Adams <clint@users.sourceforge.net> | 2001-04-19 17:00:52 +0000 |
---|---|---|
committer | Clint Adams <clint@users.sourceforge.net> | 2001-04-19 17:00:52 +0000 |
commit | 28fe9e602780df7d023ce526d1ae3d00fb8583b5 (patch) | |
tree | ee65c87718b5de45b1b15ad5ce9d5472389e5b77 /configure.in | |
parent | a43aa761cdb3fd1051dad474fccf9e500a0d49ea (diff) | |
download | zsh-28fe9e602780df7d023ce526d1ae3d00fb8583b5.tar.gz zsh-28fe9e602780df7d023ce526d1ae3d00fb8583b5.tar.xz zsh-28fe9e602780df7d023ce526d1ae3d00fb8583b5.zip |
14039: simulate old linking behavior
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/configure.in b/configure.in index f751b8834..006a45e93 100644 --- a/configure.in +++ b/configure.in @@ -898,7 +898,7 @@ if test $zsh_cv_func_tgetent_accepts_null = yes; then AC_DEFINE(TGETENT_ACCEPTS_NULL) fi -LIBS=$SAVELIBS +LIBS="$LIBS_CAP $LIBS_SOCKET $LIBS_M $LIBS_TERMCAP $LIBS_TERMINFO $LIBS_YP $SAVELIBS" AC_FUNC_MMAP if test x$ac_cv_func_mmap_fixed_mapped = xyes; then @@ -1688,16 +1688,16 @@ if test "x$dynamic" = xyes; then test "$zsh_cv_shared_environ" = yes || dynamic=no dnl test "$zsh_cv_sys_dynamic_broken" = no || dynamic=no if test "$ac_cv_func_tgetent" = yes; then - SAVELIBS=$LIBS - LIBS="$LIBS_TERMCAP $LIBS" +# SAVELIBS=$LIBS +# LIBS="$LIBS_TERMCAP $LIBS" zsh_SHARED_FUNCTION([tgetent]) - LIBS=$SAVELIBS +# LIBS=$SAVELIBS fi if test "$ac_cv_func_tigetstr" = yes; then - SAVELIBS=$LIBS - LIBS="$LIBS_TERMINFO $LIBS" +# SAVELIBS=$LIBS +# LIBS="$LIBS_TERMINFO $LIBS" zsh_SHARED_FUNCTION([tigetstr]) - LIBS=$SAVELIBS +# LIBS=$SAVELIBS fi fi |