comparison configure.in @ 365:30d2cfa1092a r21-1-12

Import from CVS: tag r21-1-12
author cvs
date Mon, 13 Aug 2007 11:00:12 +0200
parents 972bbb6d6ca2
children a4f53d9b3154
comparison
equal deleted inserted replaced
364:63c3368d1275 365:30d2cfa1092a
3113 XE_COMPUTE_RUNPATH() 3113 XE_COMPUTE_RUNPATH()
3114 fi 3114 fi
3115 3115
3116 AC_CHECK_FUNCS(cbrt closedir dup2 eaccess fmod fpathconf frexp ftime gethostname getpagesize gettimeofday getcwd getwd logb lrand48 matherr mkdir mktime perror poll random rename res_init rint rmdir select setitimer setpgid setlocale setsid sigblock sighold sigprocmask snprintf strcasecmp strerror tzset ulimit usleep utimes waitpid vsnprintf) 3116 AC_CHECK_FUNCS(cbrt closedir dup2 eaccess fmod fpathconf frexp ftime gethostname getpagesize gettimeofday getcwd getwd logb lrand48 matherr mkdir mktime perror poll random rename res_init rint rmdir select setitimer setpgid setlocale setsid sigblock sighold sigprocmask snprintf strcasecmp strerror tzset ulimit usleep utimes waitpid vsnprintf)
3117 3117
3118 # Check for UNIX98 PTYs.
3119 # getpt is a glibc addition which emulates the master device on
3120 # systems without kernel support.
3121 AC_CHECK_FUNCS(grantpt unlockpt getpt ptsname)
3122
3118 dnl realpath is buggy on linux, decosf and aix4 3123 dnl realpath is buggy on linux, decosf and aix4
3119 3124
3120 dnl The realpath() in linux libc (4.6.27) sometimes fails with ELOOP. 3125 dnl The realpath() in linux libc (4.6.27) sometimes fails with ELOOP.
3121 dnl The realpath in ELF linux libc's is O.K. 3126 dnl The realpath in ELF linux libc's is O.K.
3122 dnl For example, call realpath on a file thirty-five or so directories deep 3127 dnl For example, call realpath on a file thirty-five or so directories deep
3430 XE_ADD_OBJS(nas.o) 3435 XE_ADD_OBJS(nas.o)
3431 XE_PREPEND(-laudio, libs_x) 3436 XE_PREPEND(-laudio, libs_x)
3432 dnl If the nas library does not contain the error jump point, 3437 dnl If the nas library does not contain the error jump point,
3433 dnl then we force safer behaviour. 3438 dnl then we force safer behaviour.
3434 AC_EGREP_HEADER(AuXtErrorJump,audio/Xtutil.h,,[AC_DEFINE(NAS_NO_ERROR_JUMP)]) 3439 AC_EGREP_HEADER(AuXtErrorJump,audio/Xtutil.h,,[AC_DEFINE(NAS_NO_ERROR_JUMP)])
3440 dnl NAS <= 1.2p5 defines {BIG,LITTLE}_ENDIAN in conflict with GNU libc etc
3441 dnl Recent NAS prefixes NAS_ to avoid polluting namespace
3442 AC_EGREP_CPP(yes,
3443 [#include <audio/fileutil.h>
3444 #ifdef NAS_BIG_ENDIAN
3445 yes
3446 #endif
3447 ],[AC_DEFINE(NAS_USES_OWN_NAMESPACE)])
3435 esac 3448 esac
3436 3449
3437 dnl --------------------- 3450 dnl ---------------------
3438 dnl TTY-dependent options 3451 dnl TTY-dependent options
3439 dnl --------------------- 3452 dnl ---------------------