comparison configure.in @ 1202:6041a741b6d6

[xemacs-hg @ 2003-01-12 11:03:13 by michaels] 2003-01-12 Mike Sperber <mike@xemacs.org> * configure.in: Check for strupr and strlwr. 2002-12-16 Ben Wing <ben@xemacs.org> * INSTALL (Rationale): * configure.in (XE_COMPUTE_RUNPATH): * configure.usage (Usage): * configure.usage (--xemacs-compiler): * configure.usage (--srcdir): * configure.usage (--with-prefix): * configure.usage (--bindir): New. * configure.usage (--datadir): New. * configure.usage (--statedir): New. * configure.usage (--libdir): New. * configure.usage (--infodir): New. * configure.usage (--mandir): New. * configure.usage (--lispdir): New. * configure.usage (--sitelispdir): New. * configure.usage (--etcdir): New. * configure.usage (--lockdir): New. * configure.usage (--archlibdir): New. * configure.usage (--docdir): New. * configure.usage (--moduledir): New. * configure.usage (--with-site-lisp): New. * configure.usage (--with-site-modules): New. * configure.usage (--package-path): New. * configure.usage (--infopath): New. * configure.usage (--with-xmu): * configure.usage (--with-tty): * configure.usage (--with-gif): * configure.usage (--native-sound-lib): * configure.usage (--with-xim): New. * configure.usage (--with-clash-detection): New. * configure.usage (--with-database): * configure.usage (--mail-locking): * configure.usage (--with-ipv6-cname): Removed. * configure.usage (--error-checking): Redo usage message more logically, fix some problems. In configure, when outputting the compilation options, put in a big ugly warning about using union-type, since it's been known to trigger so many compiler bugs, invariably leading to weird crashes.
author michaels
date Sun, 12 Jan 2003 11:03:16 +0000
parents 2e45c3beb9dc
children d9c553868a01
comparison
equal deleted inserted replaced
1201:c2569faae8ed 1202:6041a741b6d6
3971 3971
3972 dnl ---------------------------------------------------------------- 3972 dnl ----------------------------------------------------------------
3973 dnl Check for POSIX functions. 3973 dnl Check for POSIX functions.
3974 dnl ---------------------------------------------------------------- 3974 dnl ----------------------------------------------------------------
3975 3975
3976 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 wcslen wcscmp) 3976 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 strlwr strupr symlink tzset ulimit usleep waitpid vsnprintf fsync ftruncate umask wcslen wcscmp)
3977 3977
3978 dnl getaddrinfo() is borked under hpux11 3978 dnl getaddrinfo() is borked under hpux11
3979 if test "$ac_cv_func_getaddrinfo" != "no" ; then 3979 if test "$ac_cv_func_getaddrinfo" != "no" ; then
3980 case "$opsys" in 3980 case "$opsys" in
3981 hpux11 ) 3981 hpux11 )
5165 test "$with_tooltalk" = yes && echo " Compiling in support for ToolTalk." 5165 test "$with_tooltalk" = yes && echo " Compiling in support for ToolTalk."
5166 test "$with_workshop" = yes && echo " Compiling in support for Sun WorkShop." 5166 test "$with_workshop" = yes && echo " Compiling in support for Sun WorkShop."
5167 test "$with_socks" = yes && echo " Compiling in support for SOCKS." 5167 test "$with_socks" = yes && echo " Compiling in support for SOCKS."
5168 test "$with_dnet" = yes && echo " Compiling in support for DNET." 5168 test "$with_dnet" = yes && echo " Compiling in support for DNET."
5169 test "$with_modules" = "yes" && echo " Compiling in support for dynamic shared object modules." 5169 test "$with_modules" = "yes" && echo " Compiling in support for dynamic shared object modules."
5170 test "$use_union_type" = yes && echo " Using the union type for Lisp_Objects." 5170 if test "$use_union_type" = yes ; then
5171 echo " Using the union type for Lisp_Objects."
5172 echo " WARNING: ---------------------------------------------------------"
5173 echo " WARNING: This tends to trigger compiler bugs, especially when"
5174 echo " WARNING: combined with MULE and ERROR_CHECKING. Crashes have"
5175 echo " WARNING: been seen with various versions of GCC, and recently"
5176 echo " WARNING: with Visual C++ as well."
5177 echo " WARNING: ---------------------------------------------------------"
5178 fi
5179 test "$use_union_type" = yes && echo " WARNING: Use of the union type may cause crashes due to compiler bugs."
5171 test "$use_kkcc" = yes && echo " Using the new GC algorithms." 5180 test "$use_kkcc" = yes && echo " Using the new GC algorithms."
5172 test "$pdump" = yes && echo " Using the new portable dumper." 5181 test "$pdump" = yes && echo " Using the new portable dumper."
5173 test "$debug" = yes && echo " Compiling in support for extra debugging code." 5182 test "$debug" = yes && echo " Compiling in support for extra debugging code."
5174 test "$usage_tracking" = yes && echo " Compiling in support for active usage tracking (Sun internal)." 5183 test "$usage_tracking" = yes && echo " Compiling in support for active usage tracking (Sun internal)."
5175 if test "$error_check_extents $error_check_types $error_check_text $error_check_gc $error_check_malloc $error_check_glyphs $error_check_byte_code $error_check_display $error_check_structures" \ 5184 if test "$error_check_extents $error_check_types $error_check_text $error_check_gc $error_check_malloc $error_check_glyphs $error_check_byte_code $error_check_display $error_check_structures" \