comparison configure.in @ 359:8e84bee8ddd0 r21-1-9

Import from CVS: tag r21-1-9
author cvs
date Mon, 13 Aug 2007 10:57:55 +0200
parents 4711e16a8e49
children 7347b34c275b
comparison
equal deleted inserted replaced
358:fed6e0f6a03a 359:8e84bee8ddd0
377 dnl the following is set to yes or no later. 377 dnl the following is set to yes or no later.
378 with_toolbars="" 378 with_toolbars=""
379 with_tty="" 379 with_tty=""
380 use_union_type="no" 380 use_union_type="no"
381 with_dnet="" 381 with_dnet=""
382 dnl dragndrop is still experimental. When it is stable, comment out the following line:
383 with_dragndrop="no"
382 384
383 dnl ------------------ 385 dnl ------------------
384 dnl Options Processing 386 dnl Options Processing
385 dnl ------------------ 387 dnl ------------------
386 388
1030 case "$canonical" in 1032 case "$canonical" in
1031 sparc-*-* ) machine=sparc ;; 1033 sparc-*-* ) machine=sparc ;;
1032 alpha*-*-* ) machine=alpha ;; 1034 alpha*-*-* ) machine=alpha ;;
1033 vax-*-* ) machine=vax ;; 1035 vax-*-* ) machine=vax ;;
1034 mips-dec-* ) machine=pmax ;; 1036 mips-dec-* ) machine=pmax ;;
1037 mips-sgi-irix6* ) machine=iris6d ;;
1035 mips-sgi-* ) machine=iris4d ;; 1038 mips-sgi-* ) machine=iris4d ;;
1036 mips*-linux ) machine=mips ;; 1039 mips*-linux ) machine=mips ;;
1037 romp-ibm-* ) machine=ibmrt ;; 1040 romp-ibm-* ) machine=ibmrt ;;
1038 rs6000-ibm-aix* ) machine=ibmrs6000 ;; 1041 rs6000-ibm-aix* ) machine=ibmrs6000 ;;
1039 powerpc-ibm-aix* ) machine=ibmrs6000 ;; 1042 powerpc-ibm-aix* ) machine=ibmrs6000 ;;
3545 3548
3546 dnl Check for Berkeley DB. 3549 dnl Check for Berkeley DB.
3547 if test "$with_database_berkdb" != "no"; then 3550 if test "$with_database_berkdb" != "no"; then
3548 AC_MSG_CHECKING(for Berkeley db.h) 3551 AC_MSG_CHECKING(for Berkeley db.h)
3549 for path in "db/db.h" "db.h"; do 3552 for path in "db/db.h" "db.h"; do
3550 AC_TRY_COMPILE([#ifdef HAVE_INTTYPES_H 3553 AC_TRY_COMPILE([
3554 #include <stdlib.h>
3555 #if !(defined __GLIBC__ && __GLIBC_MINOR__ >= 1)
3556 #ifdef HAVE_INTTYPES_H
3551 #define __BIT_TYPES_DEFINED__ 3557 #define __BIT_TYPES_DEFINED__
3552 #include <inttypes.h> 3558 #include <inttypes.h>
3553 typedef uint8_t u_int8_t; 3559 typedef uint8_t u_int8_t;
3554 typedef uint16_t u_int16_t; 3560 typedef uint16_t u_int16_t;
3555 typedef uint32_t u_int32_t; 3561 typedef uint32_t u_int32_t;
3556 #ifdef WE_DONT_NEED_QUADS 3562 #ifdef WE_DONT_NEED_QUADS
3557 typedef uint64_t u_int64_t; 3563 typedef uint64_t u_int64_t;
3564 #endif
3558 #endif 3565 #endif
3559 #endif 3566 #endif
3560 #include <$path> 3567 #include <$path>
3561 ],[], db_h_path="$path"; break) 3568 ],[], db_h_path="$path"; break)
3562 done 3569 done