diff options
author | Bram Moolenaar <Bram@vim.org> | 2008-06-26 20:14:00 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2008-06-26 20:14:00 +0000 |
commit | 00ca284cc0996c183f25213d307fcf8b2ce0abee (patch) | |
tree | 744c3a5a9ce45a97928992a2ce38b4ee5ab12cae /src/configure.in | |
parent | aba8857aa3dac629dc9c2a61c70bceee8b095e14 (diff) | |
download | vim-git-00ca284cc0996c183f25213d307fcf8b2ce0abee.tar.gz |
updated for version 7.2a-001v7.2a.001
Diffstat (limited to 'src/configure.in')
-rw-r--r-- | src/configure.in | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/src/configure.in b/src/configure.in index 7d854554c..35dce7f2b 100644 --- a/src/configure.in +++ b/src/configure.in @@ -1120,11 +1120,13 @@ else dnl Check if the X11 header files are correctly installed. On some systems - dnl Xlib.h includes files that don't exist + dnl Xlib.h includes files that don't exist. On some systems X11/Intrinsic.h + dnl is missing. AC_MSG_CHECKING(if X11 header files can be found) cflags_save=$CFLAGS CFLAGS="$CFLAGS $X_CFLAGS" - AC_TRY_COMPILE([#include <X11/Xlib.h>], , + AC_TRY_COMPILE([#include <X11/Xlib.h> +#include <X11/Intrinsic.h>], , AC_MSG_RESULT(yes), AC_MSG_RESULT(no); no_x=yes) CFLAGS=$cflags_save @@ -2071,11 +2073,18 @@ AC_CHECK_HEADERS(stdarg.h stdlib.h string.h sys/select.h sys/utsname.h \ termcap.h fcntl.h sgtty.h sys/ioctl.h sys/time.h sys/types.h termio.h \ iconv.h langinfo.h math.h unistd.h stropts.h errno.h \ sys/resource.h sys/systeminfo.h locale.h \ - sys/stream.h sys/ptem.h termios.h libc.h sys/statfs.h \ + sys/stream.h termios.h libc.h sys/statfs.h \ poll.h sys/poll.h pwd.h utime.h sys/param.h libintl.h \ libgen.h util/debug.h util/msg18n.h frame.h \ sys/acl.h sys/access.h sys/sysctl.h sys/sysinfo.h wchar.h wctype.h) +dnl sys/ptem.h depends on sys/stream.h on Solaris +AC_CHECK_HEADERS(sys/ptem.h, [], [], +[#if defined HAVE_SYS_STREAM_H +# include <sys/stream.h> +#endif]) + + dnl pthread_np.h may exist but can only be used after including pthread.h AC_MSG_CHECKING([for pthread_np.h]) AC_TRY_COMPILE([ |