diff options
author | Bram Moolenaar <Bram@vim.org> | 2006-10-10 09:41:28 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2006-10-10 09:41:28 +0000 |
commit | a1b5aa52c480badce208a67f236005762e991329 (patch) | |
tree | 9096f6429106d8edf03b2dd8748aa09b8f035d1a /src/auto | |
parent | 9c69732279b0d8a61cdbc564c103622a0891edeb (diff) | |
download | vim-git-a1b5aa52c480badce208a67f236005762e991329.tar.gz |
updated for version 7.0-123v7.0.123
Diffstat (limited to 'src/auto')
-rwxr-xr-x | src/auto/configure | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/auto/configure b/src/auto/configure index 1e3d8ec5a..c941bc0db 100755 --- a/src/auto/configure +++ b/src/auto/configure @@ -4256,7 +4256,7 @@ fi echo $ECHO_N "checking if -pthread should be used... $ECHO_C" >&6 threadsafe_flag= thread_lib= - if test "x$MACOSX" != "xyes"; then + if test "`(uname) 2>/dev/null`" != Darwin; then test "$GCC" = yes && threadsafe_flag="-pthread" if test "`(uname) 2>/dev/null`" = FreeBSD; then threadsafe_flag="-D_THREAD_SAFE" @@ -11555,8 +11555,8 @@ rm -f conftest.err conftest.$ac_objext \ else echo "$as_me:$LINENO: result: empty: automatic terminal library selection" >&5 echo "${ECHO_T}empty: automatic terminal library selection" >&6 - case "`uname -s 2>/dev/null`" in - OSF1) tlibs="ncurses curses termlib termcap";; + case "`uname -s 2>/dev/null`" in + OSF1|SCO_SV) tlibs="ncurses curses termlib termcap";; *) tlibs="ncurses termlib termcap curses";; esac for libname in $tlibs; do |