Changeset 3212 for branches/emacs-merge/configure.in
- Timestamp:
- 12/29/03 22:20:58 (5 years ago)
- Files:
-
- branches/emacs-merge/configure.in (modified) (8 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/emacs-merge/configure.in
r3207 r3212 4 4 dnl in the directory containing this script. 5 5 dnl 6 dnl Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001 6 dnl Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002 7 7 dnl Free Software Foundation, Inc. 8 8 dnl … … 538 538 ;; 539 539 540 hppa*-hp-hpux10.2* ) 541 machine=hp800 opsys=hpux10-20 542 ;; 543 540 544 hppa*-hp-hpux10* ) 541 545 machine=hp800 opsys=hpux10 542 546 ;; 547 543 548 hppa*-hp-hpux1[1-9]* ) 544 549 machine=hp800 opsys=hpux11 … … 578 583 i370-ibm-aix*) 579 584 machine=ibm370aix opsys=usg5-3 585 ;; 586 s390-*-linux-gnu) 587 machine=ibms390 opsys=gnu-linux 580 588 ;; 581 589 rs6000-ibm-aix3.1* | powerpc-ibm-aix3.1* ) … … 1049 1057 1050 1058 ## Mips Linux-based GNU system 1051 mips-*-linux-gnu* )1059 mips-*-linux-gnu* | mipsel-*-linux-gnu* ) 1052 1060 machine=mips opsys=gnu-linux 1053 1061 ;; … … 1376 1384 AC_CACHE_CHECK(for speed_t, emacs_cv_speed_t, 1377 1385 AC_TRY_COMPILE([#include <termios.h>], [speed_t x = 1;], 1378 emacs_cv_speed_t=yes ))1386 emacs_cv_speed_t=yes, emacs_cv_speed_t=no)) 1379 1387 if test $emacs_cv_speed_t = yes; then 1380 1388 AC_DEFINE(HAVE_SPEED_T) … … 1603 1611 fi 1604 1612 AC_MSG_RESULT($HAVE_XFREE386) 1613 1614 dnl Check for need for bigtoc support on IBM AIX 1615 1616 case ${host_os} in 1617 aix*) 1618 AC_CACHE_CHECK([for -bbigtoc option], [gdb_cv_bigtoc], [ 1619 case $GCC in 1620 yes) gdb_cv_bigtoc=-Wl,-bbigtoc ;; 1621 *) gdb_cv_bigtoc=-bbigtoc ;; 1622 esac 1623 1624 LDFLAGS=$LDFLAGS\ $gdb_cv_bigtoc 1625 AC_TRY_LINK([], [int i;], [], [gdb_cv_bigtoc=]) 1626 ]) 1627 ;; 1628 esac 1605 1629 1606 1630 # Change CFLAGS temporarily so that C_SWITCH_X_SITE gets used … … 1868 1892 if test "${HAVE_JPEG}" = "yes"; then 1869 1893 AC_DEFINE(HAVE_JPEG) 1894 AC_EGREP_CPP( 1895 changequote({, })dnl avoid leadingspace on the next line 1896 {version= *(6[2-9]|[7-9][0-9])}, 1897 changequote([, ])dnl 1898 [#include <jpeglib.h> 1899 version=JPEG_LIB_VERSION 1900 ], 1901 AC_DEFINE(HAVE_JPEG), 1902 [AC_MSG_WARN([libjpeg found, but not version 6b or later]) 1903 HAVE_JPEG=no]) 1870 1904 fi 1871 1905 fi … … 1905 1939 if test "${with_gif}" != "no"; then 1906 1940 AC_CHECK_HEADER(gif_lib.h, 1907 AC_CHECK_LIB(ungif, DGifOpen, HAVE_GIF=yes)) 1941 # EGifPutExtensionLast only exists from version libungif-4.1.0b1. 1942 # Earlier versions can crash Emacs. 1943 AC_CHECK_LIB(ungif, EGifPutExtensionLast, HAVE_GIF=yes)) 1908 1944 fi 1909 1945
