comparison configure.in @ 1070:989ddde6705d

[xemacs-hg @ 2002-10-24 16:19:39 by youngs] 2002-10-25 Stephen J. Turnbull <stephen@xemacs.org> * configure.in (Check for POSIX functions): New section head. getaddrinfo is detected on HP-UX 11.XX, but appears to be non-functional. Disable it. Based on work by Darryl Okahata.
author youngs
date Thu, 24 Oct 2002 16:21:17 +0000
parents 89cca5f594bd
children 184461bc8de4
comparison
equal deleted inserted replaced
1069:13daf40fb997 1070:989ddde6705d
3882 dnl AIX needs the following library for use with Motif 3882 dnl AIX needs the following library for use with Motif
3883 AC_CHECK_LIB(i18n, layout_object_getvalue, [XE_PREPEND(-li18n, libs_x)]) 3883 AC_CHECK_LIB(i18n, layout_object_getvalue, [XE_PREPEND(-li18n, libs_x)])
3884 XE_COMPUTE_RUNPATH() 3884 XE_COMPUTE_RUNPATH()
3885 fi 3885 fi
3886 3886
3887 dnl ----------------------------------------------------------------
3888 dnl Check for POSIX functions.
3889 dnl ----------------------------------------------------------------
3890
3887 AC_CHECK_FUNCS(cbrt closedir dup2 eaccess fmod fpathconf frexp ftime getaddrinfo gethostname getnameinfo getpagesize gettimeofday getcwd getwd link logb lrand48 matherr mkdir mktime perror poll random readlink rename res_init rint rmdir select setitimer setpgid setlocale setsid sigblock sighold sigprocmask snprintf stpcpy strerror symlink tzset ulimit usleep waitpid vsnprintf fsync ftruncate umask) 3891 AC_CHECK_FUNCS(cbrt closedir dup2 eaccess fmod fpathconf frexp ftime getaddrinfo gethostname getnameinfo getpagesize gettimeofday getcwd getwd link logb lrand48 matherr mkdir mktime perror poll random readlink rename res_init rint rmdir select setitimer setpgid setlocale setsid sigblock sighold sigprocmask snprintf stpcpy strerror symlink tzset ulimit usleep waitpid vsnprintf fsync ftruncate umask)
3892
3893 dnl getaddrinfo() is borked under hpux11
3894 if test "$ac_cv_func_getaddrinfo" != "no" ; then
3895 case "$opsys" in
3896 hpux11 )
3897 AC_MSG_WARN([Use of getaddrinfo is disabled for HP-UX 11.XX.])
3898 ac_cv_func_getaddrinfo=no
3899 ;;
3900 esac
3901 fi
3888 3902
3889 dnl ---------------------------------------------------------------- 3903 dnl ----------------------------------------------------------------
3890 dnl Check for Unixoid pty/process support. 3904 dnl Check for Unixoid pty/process support.
3891 dnl ---------------------------------------------------------------- 3905 dnl ----------------------------------------------------------------
3892 3906