aboutsummaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure731
1 files changed, 128 insertions, 603 deletions
diff --git a/configure b/configure
index 7dce568f703..ab2129a4060 100755
--- a/configure
+++ b/configure
@@ -1345,7 +1345,7 @@ Optional Features:
1345Optional Packages: 1345Optional Packages:
1346 --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] 1346 --with-PACKAGE[=ARG] use PACKAGE [ARG=yes]
1347 --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) 1347 --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no)
1348 --without-gcc don't use GCC to compile Emacs if GCC is found 1348 --without-gcc don't use GCC to compile Emacs even if GCC is found
1349 --without-pop don't support POP mail retrieval with movemail 1349 --without-pop don't support POP mail retrieval with movemail
1350 --with-kerberos support Kerberos-authenticated POP 1350 --with-kerberos support Kerberos-authenticated POP
1351 --with-kerberos5 support Kerberos version 5 authenticated POP 1351 --with-kerberos5 support Kerberos version 5 authenticated POP
@@ -1353,25 +1353,27 @@ Optional Packages:
1353 --without-sound don't compile with sound support 1353 --without-sound don't compile with sound support
1354 --with-x-toolkit=KIT use an X toolkit (KIT one of: yes, lucid, athena, 1354 --with-x-toolkit=KIT use an X toolkit (KIT one of: yes, lucid, athena,
1355 motif, gtk, no) 1355 motif, gtk, no)
1356 --with-xpm use -lXpm for displaying XPM images 1356 --without-xpm don't compile with XPM image support
1357 --with-jpeg use -ljpeg for displaying JPEG images 1357 --without-jpeg don't compile with JPEG image support
1358 --with-tiff use -ltiff for displaying TIFF images 1358 --without-tiff don't compile with TIFF image support
1359 --with-gif use -lgif (or -lungif) for displaying GIF images 1359 --without-gif don't compile with GIF image support
1360 --with-png use -lpng for displaying PNG images 1360 --without-png don't compile with PNG image support
1361 --without-rsvg don't compile with SVG image support
1361 --with-freetype use -lfreetype for local fonts support 1362 --with-freetype use -lfreetype for local fonts support
1362 --with-xft use -lXft for anti aliased fonts 1363 --with-xft use -lXft for anti aliased fonts
1363 --with-gpm use -lgpm for mouse support on a GNU/Linux console 1364 --without-libotf don't use libotf for OpenType font support
1364 --with-rsvg use -lrsvg-2 for displaying SVG images 1365 --without-m17n-flt don't use m17n-flt for text shaping
1365 --with-gtk use GTK (same as --with-x-toolkit=gtk) 1366 --with-gtk use GTK toolkit
1366 --with-pkg-config-prog Path to pkg-config for finding GTK and librsvg
1367 --without-toolkit-scroll-bars 1367 --without-toolkit-scroll-bars
1368 don't use Motif or Xaw3d scroll bars 1368 don't use Motif or Xaw3d scroll bars
1369 --without-xaw3d don't use Xaw3d 1369 --without-xaw3d don't use Xaw3d
1370 --without-xim don't use X11 XIM 1370 --without-xim don't use X11 XIM
1371 --without-carbon don't use Carbon GUI on Mac OS X 1371 --with-carbon use Carbon GUI on Mac OS X. This is unsupported!
1372 --with-dbus use D-Bus 1372 --without-gpm don't use -lgpm for mouse support on a GNU/Linux
1373 --without-libotf don't use libotf for OpenType font support 1373 console
1374 --without-m17n-flt don't use m17n-flt for text shaping 1374 --with-dbus compile with D-Bus support
1375 --with-pkg-config-prog=PATH
1376 Path to pkg-config for finding GTK and librsvg
1375 --with-x use the X Window System 1377 --with-x use the X Window System
1376 1378
1377Some influential environment variables: 1379Some influential environment variables:
@@ -1849,6 +1851,7 @@ gameuser=games
1849 1851
1850 1852
1851 1853
1854
1852# Check whether --with-gcc was given. 1855# Check whether --with-gcc was given.
1853if test "${with_gcc+set}" = set; then 1856if test "${with_gcc+set}" = set; then
1854 withval=$with_gcc; 1857 withval=$with_gcc;
@@ -1858,15 +1861,13 @@ fi
1858 1861
1859# Check whether --with-pop was given. 1862# Check whether --with-pop was given.
1860if test "${with_pop+set}" = set; then 1863if test "${with_pop+set}" = set; then
1861 withval=$with_pop; if test "$withval" = yes; then 1864 withval=$with_pop;
1862 cat >>confdefs.h <<\_ACEOF
1863#define MAIL_USE_POP 1
1864_ACEOF
1865
1866else :
1867fi
1868else 1865else
1869 cat >>confdefs.h <<\_ACEOF 1866 with_pop=yes
1867fi
1868
1869if test "$with_pop" = yes; then
1870 cat >>confdefs.h <<\_ACEOF
1870#define MAIL_USE_POP 1 1871#define MAIL_USE_POP 1
1871_ACEOF 1872_ACEOF
1872 1873
@@ -1874,24 +1875,31 @@ fi
1874 1875
1875 1876
1876 1877
1877
1878# Check whether --with-kerberos was given. 1878# Check whether --with-kerberos was given.
1879if test "${with_kerberos+set}" = set; then 1879if test "${with_kerberos+set}" = set; then
1880 withval=$with_kerberos; if test "$withval" = yes; then 1880 withval=$with_kerberos;
1881else
1882 with_kerberos=no
1883fi
1884
1885if test "$with_kerberos" = yes; then
1881 cat >>confdefs.h <<\_ACEOF 1886 cat >>confdefs.h <<\_ACEOF
1882#define KERBEROS 1 1887#define KERBEROS 1
1883_ACEOF 1888_ACEOF
1884 1889
1885fi 1890fi
1886fi
1887
1888 1891
1889 1892
1890 1893
1891# Check whether --with-kerberos5 was given. 1894# Check whether --with-kerberos5 was given.
1892if test "${with_kerberos5+set}" = set; then 1895if test "${with_kerberos5+set}" = set; then
1893 withval=$with_kerberos5; if test "${with_kerberos5+set}" = set; then 1896 withval=$with_kerberos5;
1894 if test "${with_kerberos+set}" != set; then 1897else
1898 with_kerberos5=no
1899fi
1900
1901if test "${with_kerberos5}" = yes; then
1902 if test "${with_kerberos}" != yes; then
1895 with_kerberos=yes 1903 with_kerberos=yes
1896 cat >>confdefs.h <<\_ACEOF 1904 cat >>confdefs.h <<\_ACEOF
1897#define KERBEROS 1 1905#define KERBEROS 1
@@ -1904,26 +1912,29 @@ cat >>confdefs.h <<\_ACEOF
1904_ACEOF 1912_ACEOF
1905 1913
1906fi 1914fi
1907fi
1908
1909 1915
1910 1916
1911# Check whether --with-hesiod was given. 1917# Check whether --with-hesiod was given.
1912if test "${with_hesiod+set}" = set; then 1918if test "${with_hesiod+set}" = set; then
1913 withval=$with_hesiod; if test "$withval" = yes; then 1919 withval=$with_hesiod;
1920else
1921 with_hesiod=no
1922fi
1923
1924if test "$with_hesiod" = yes; then
1914 1925
1915cat >>confdefs.h <<\_ACEOF 1926cat >>confdefs.h <<\_ACEOF
1916#define HESIOD 1 1927#define HESIOD 1
1917_ACEOF 1928_ACEOF
1918 1929
1919fi 1930fi
1920fi
1921
1922 1931
1923 1932
1924# Check whether --with-sound was given. 1933# Check whether --with-sound was given.
1925if test "${with_sound+set}" = set; then 1934if test "${with_sound+set}" = set; then
1926 withval=$with_sound; 1935 withval=$with_sound;
1936else
1937 with_sound=yes
1927fi 1938fi
1928 1939
1929 1940
@@ -1956,110 +1967,153 @@ fi
1956# Check whether --with-xpm was given. 1967# Check whether --with-xpm was given.
1957if test "${with_xpm+set}" = set; then 1968if test "${with_xpm+set}" = set; then
1958 withval=$with_xpm; 1969 withval=$with_xpm;
1970else
1971 with_xpm=yes
1959fi 1972fi
1960 1973
1961 1974
1962# Check whether --with-jpeg was given. 1975# Check whether --with-jpeg was given.
1963if test "${with_jpeg+set}" = set; then 1976if test "${with_jpeg+set}" = set; then
1964 withval=$with_jpeg; 1977 withval=$with_jpeg;
1978else
1979 with_jpeg=yes
1965fi 1980fi
1966 1981
1967 1982
1968# Check whether --with-tiff was given. 1983# Check whether --with-tiff was given.
1969if test "${with_tiff+set}" = set; then 1984if test "${with_tiff+set}" = set; then
1970 withval=$with_tiff; 1985 withval=$with_tiff;
1986else
1987 with_tiff=yes
1971fi 1988fi
1972 1989
1973 1990
1974# Check whether --with-gif was given. 1991# Check whether --with-gif was given.
1975if test "${with_gif+set}" = set; then 1992if test "${with_gif+set}" = set; then
1976 withval=$with_gif; 1993 withval=$with_gif;
1994else
1995 with_gif=yes
1977fi 1996fi
1978 1997
1979 1998
1980# Check whether --with-png was given. 1999# Check whether --with-png was given.
1981if test "${with_png+set}" = set; then 2000if test "${with_png+set}" = set; then
1982 withval=$with_png; 2001 withval=$with_png;
2002else
2003 with_png=yes
1983fi 2004fi
1984 2005
1985 2006
2007# Check whether --with-rsvg was given.
2008if test "${with_rsvg+set}" = set; then
2009 withval=$with_rsvg;
2010else
2011 with_rsvg=yes
2012fi
2013
2014
2015
1986# Check whether --with-freetype was given. 2016# Check whether --with-freetype was given.
1987if test "${with_freetype+set}" = set; then 2017if test "${with_freetype+set}" = set; then
1988 withval=$with_freetype; 2018 withval=$with_freetype;
2019else
2020 with_freetype=no
1989fi 2021fi
1990 2022
1991 2023
1992# Check whether --with-xft was given. 2024# Check whether --with-xft was given.
1993if test "${with_xft+set}" = set; then 2025if test "${with_xft+set}" = set; then
1994 withval=$with_xft; 2026 withval=$with_xft;
2027else
2028 with_xft=no
1995fi 2029fi
1996 2030
1997 2031
1998# Check whether --with-gpm was given. 2032# Check whether --with-libotf was given.
1999if test "${with_gpm+set}" = set; then 2033if test "${with_libotf+set}" = set; then
2000 withval=$with_gpm; 2034 withval=$with_libotf;
2035else
2036 with_libotf=yes
2001fi 2037fi
2002 2038
2003 2039
2004# Check whether --with-rsvg was given. 2040# Check whether --with-m17n-flt was given.
2005if test "${with_rsvg+set}" = set; then 2041if test "${with_m17n_flt+set}" = set; then
2006 withval=$with_rsvg; 2042 withval=$with_m17n_flt;
2043else
2044 with_m17n_flt=yes
2007fi 2045fi
2008 2046
2009 2047
2048
2010# Check whether --with-gtk was given. 2049# Check whether --with-gtk was given.
2011if test "${with_gtk+set}" = set; then 2050if test "${with_gtk+set}" = set; then
2012 withval=$with_gtk; 2051 withval=$with_gtk;
2013fi 2052else
2014 2053 with_gtk=no
2015
2016# Check whether --with-pkg-config-prog was given.
2017if test "${with_pkg_config_prog+set}" = set; then
2018 withval=$with_pkg_config_prog;
2019fi 2054fi
2020 2055
2021 2056
2022# Check whether --with-toolkit-scroll-bars was given. 2057# Check whether --with-toolkit-scroll-bars was given.
2023if test "${with_toolkit_scroll_bars+set}" = set; then 2058if test "${with_toolkit_scroll_bars+set}" = set; then
2024 withval=$with_toolkit_scroll_bars; 2059 withval=$with_toolkit_scroll_bars;
2060else
2061 with_toolkit_scroll_bars=yes
2025fi 2062fi
2026 2063
2027 2064
2028# Check whether --with-xaw3d was given. 2065# Check whether --with-xaw3d was given.
2029if test "${with_xaw3d+set}" = set; then 2066if test "${with_xaw3d+set}" = set; then
2030 withval=$with_xaw3d; 2067 withval=$with_xaw3d;
2068else
2069 with_xaw3d=yes
2031fi 2070fi
2032 2071
2033 2072
2034# Check whether --with-xim was given. 2073# Check whether --with-xim was given.
2035if test "${with_xim+set}" = set; then 2074if test "${with_xim+set}" = set; then
2036 withval=$with_xim; 2075 withval=$with_xim;
2076else
2077 with_xim=yes
2037fi 2078fi
2038 2079
2039 2080
2040# Check whether --with-carbon was given. 2081# Check whether --with-carbon was given.
2041if test "${with_carbon+set}" = set; then 2082if test "${with_carbon+set}" = set; then
2042 withval=$with_carbon; 2083 withval=$with_carbon;
2084else
2085 with_carbon=no
2086fi
2087
2088
2089
2090# Check whether --with-gpm was given.
2091if test "${with_gpm+set}" = set; then
2092 withval=$with_gpm;
2093else
2094 with_gpm=yes
2043fi 2095fi
2044 2096
2045 2097
2046# Check whether --with-dbus was given. 2098# Check whether --with-dbus was given.
2047if test "${with_dbus+set}" = set; then 2099if test "${with_dbus+set}" = set; then
2048 withval=$with_dbus; 2100 withval=$with_dbus;
2101else
2102 with_dbus=no
2049fi 2103fi
2050 2104
2051 2105
2052# Check whether --with-libotf was given.
2053if test "${with_libotf+set}" = set; then
2054 withval=$with_libotf;
2055fi
2056
2057 2106
2058# Check whether --with-m17n-flt was given. 2107# Check whether --with-pkg-config-prog was given.
2059if test "${with_m17n_flt+set}" = set; then 2108if test "${with_pkg_config_prog+set}" = set; then
2060 withval=$with_m17n_flt; 2109 withval=$with_pkg_config_prog;
2061fi 2110fi
2062 2111
2112if test "X${with_pkg_config_prog}" != X; then
2113 if test "${with_pkg_config_prog}" != yes; then
2114 PKG_CONFIG="${with_pkg_config_prog}"
2115 fi
2116fi
2063 2117
2064# Check whether --enable-carbon-app was given. 2118# Check whether --enable-carbon-app was given.
2065if test "${enable_carbon_app+set}" = set; then 2119if test "${enable_carbon_app+set}" = set; then
@@ -2280,8 +2334,8 @@ configuration=${host_alias-${build_alias-$host}}
2280### based on the machine portion of the configuration name, and an s- 2334### based on the machine portion of the configuration name, and an s-
2281### file based on the operating system portion. However, it turns out 2335### file based on the operating system portion. However, it turns out
2282### that each m/*.h file is pretty manufacturer-specific - for 2336### that each m/*.h file is pretty manufacturer-specific - for
2283### example, apollo.h, hp9000s300.h, mega68k, news.h, and tad68k are 2337### example hp9000s300.h is a 68000 machine;
2284### all 68000 machines; mips.h, pmax.h, and news-risc are all MIPS 2338### mips.h, pmax.h are all MIPS
2285### machines. So we basically have to have a special case for each 2339### machines. So we basically have to have a special case for each
2286### configuration name. 2340### configuration name.
2287### 2341###
@@ -2344,14 +2398,12 @@ _ACEOF
2344 mips-*-netbsd*) machine=pmax ;; 2398 mips-*-netbsd*) machine=pmax ;;
2345 mipsel-*-netbsd*) machine=pmax ;; 2399 mipsel-*-netbsd*) machine=pmax ;;
2346 mipseb-*-netbsd*) machine=pmax ;; 2400 mipseb-*-netbsd*) machine=pmax ;;
2347 ns32k-*-netbsd*) machine=ns32000 ;;
2348 powerpc-*-netbsd*) machine=macppc ;; 2401 powerpc-*-netbsd*) machine=macppc ;;
2349 sparc*-*-netbsd*) machine=sparc ;; 2402 sparc*-*-netbsd*) machine=sparc ;;
2350 vax-*-netbsd*) machine=vax ;; 2403 vax-*-netbsd*) machine=vax ;;
2351 arm-*-netbsd*) machine=arm ;; 2404 arm-*-netbsd*) machine=arm ;;
2352 x86_64-*-netbsd*) machine=amdx86-64 ;; 2405 x86_64-*-netbsd*) machine=amdx86-64 ;;
2353 hppa-*-netbsd*) machine=hp800 ;; 2406 hppa-*-netbsd*) machine=hp800 ;;
2354 shle-*-netbsd*) machine=sh3el ;;
2355 esac 2407 esac
2356 ;; 2408 ;;
2357 2409
@@ -2364,10 +2416,8 @@ _ACEOF
2364 hppa-*-openbsd*) machine=hp9000s300 ;; 2416 hppa-*-openbsd*) machine=hp9000s300 ;;
2365 i386-*-openbsd*) machine=intel386 ;; 2417 i386-*-openbsd*) machine=intel386 ;;
2366 m68k-*-openbsd*) machine=hp9000s300 ;; 2418 m68k-*-openbsd*) machine=hp9000s300 ;;
2367 m88k-*-openbsd*) machine=aviion ;;
2368 mips64-*-openbsd*) machine=mips64 ;; 2419 mips64-*-openbsd*) machine=mips64 ;;
2369 powerpc-*-openbsd*) machine=macppc ;; 2420 powerpc-*-openbsd*) machine=macppc ;;
2370 sh-*-openbsd*) machine=sh3el ;;
2371 sparc*-*-openbsd*) machine=sparc ;; 2421 sparc*-*-openbsd*) machine=sparc ;;
2372 vax-*-openbsd*) machine=vax ;; 2422 vax-*-openbsd*) machine=vax ;;
2373 x86_64-*-openbsd*) machine=amdx86-64 ;; 2423 x86_64-*-openbsd*) machine=amdx86-64 ;;
@@ -2383,16 +2433,6 @@ _ACEOF
2383 esac 2433 esac
2384 ;; 2434 ;;
2385 2435
2386 ## Acorn RISCiX:
2387 arm-acorn-riscix1.1* )
2388 machine=acorn opsys=riscix1-1
2389 ;;
2390 arm-acorn-riscix1.2* | arm-acorn-riscix )
2391 ## This name is riscix12 instead of riscix1.2
2392 ## to avoid a file name conflict on MSDOS.
2393 machine=acorn opsys=riscix12
2394 ;;
2395
2396 ## BSDI ports 2436 ## BSDI ports
2397 *-*-bsdi* ) 2437 *-*-bsdi* )
2398 opsys=bsdi 2438 opsys=bsdi
@@ -2410,19 +2450,6 @@ _ACEOF
2410 esac 2450 esac
2411 ;; 2451 ;;
2412 2452
2413 ## Alliant machines
2414 ## Strictly speaking, we need the version of the alliant operating
2415 ## system to choose the right machine file, but currently the
2416 ## configuration name doesn't tell us enough to choose the right
2417 ## one; we need to give alliants their own operating system name to
2418 ## do this right. When someone cares, they can help us.
2419 fx80-alliant-* )
2420 machine=alliant4 opsys=bsd4-2
2421 ;;
2422 i860-alliant-* )
2423 machine=alliant-2800 opsys=bsd4-3
2424 ;;
2425
2426 ## Alpha (DEC) machines. 2453 ## Alpha (DEC) machines.
2427 alpha*-dec-osf* ) 2454 alpha*-dec-osf* )
2428 machine=alpha opsys=osf1 2455 machine=alpha opsys=osf1
@@ -2448,21 +2475,6 @@ _ACEOF
2448 machine=arm opsys=gnu-linux 2475 machine=arm opsys=gnu-linux
2449 ;; 2476 ;;
2450 2477
2451 ## Altos 3068
2452 m68*-altos-sysv* )
2453 machine=altos opsys=usg5-2
2454 ;;
2455
2456 ## Amdahl UTS
2457 580-amdahl-sysv* )
2458 machine=amdahl opsys=usg5-2-2
2459 ;;
2460
2461 ## Apollo, Domain/OS
2462 m68*-apollo-* )
2463 machine=apollo opsys=bsd4-3
2464 ;;
2465
2466 ## Apple Darwin / Mac OS X 2478 ## Apple Darwin / Mac OS X
2467 *-apple-darwin* ) 2479 *-apple-darwin* )
2468 case "${canonical}" in 2480 case "${canonical}" in
@@ -2481,101 +2493,16 @@ _ACEOF
2481 fi 2493 fi
2482 ;; 2494 ;;
2483 2495
2484 ## AT&T 3b2, 3b5, 3b15, 3b20
2485 we32k-att-sysv* )
2486 machine=att3b opsys=usg5-2-2
2487 ;;
2488
2489 ## AT&T 3b1 - The Mighty Unix PC!
2490 m68*-att-sysv* )
2491 machine=7300 opsys=usg5-2-2
2492 ;;
2493
2494 ## Bull dpx20
2495 rs6000-bull-bosx* )
2496 machine=ibmrs6000 opsys=aix3-2
2497 ;;
2498
2499 ## Bull dpx2
2500 m68*-bull-sysv3* )
2501 machine=dpx2 opsys=usg5-3
2502 ;;
2503
2504 ## Bull sps7
2505 m68*-bull-sysv2* )
2506 machine=sps7 opsys=usg5-2
2507 ;;
2508
2509 ## CCI 5/32, 6/32 -- see "Tahoe".
2510
2511 ## Celerity
2512 ## I don't know what configuration name to use for this; config.sub
2513 ## doesn't seem to know anything about it. Hey, Celerity users, get
2514 ## in touch with us!
2515 celerity-celerity-bsd* )
2516 machine=celerity opsys=bsd4-2
2517 ;;
2518
2519 ## Clipper
2520 ## What operating systems does this chip run that Emacs has been
2521 ## tested on?
2522 clipper-* )
2523 machine=clipper
2524 ## We'll use the catch-all code at the bottom to guess the
2525 ## operating system.
2526 ;;
2527
2528 ## Compaq Nonstop 2496 ## Compaq Nonstop
2529 mips-compaq-nonstopux* ) 2497 mips-compaq-nonstopux* )
2530 machine=nonstopux opsys=nonstopux 2498 machine=nonstopux opsys=nonstopux
2531 ;; 2499 ;;
2532 2500
2533 ## Convex
2534 *-convex-bsd* | *-convex-convexos* )
2535 machine=convex opsys=bsd4-3
2536 ## Prevents spurious white space in makefiles - d.m.cooke@larc.nasa.gov
2537 NON_GNU_CPP="cc -E -P"
2538 ;;
2539
2540 ## Cubix QBx/386 2501 ## Cubix QBx/386
2541 i[3456]86-cubix-sysv* ) 2502 i[3456]86-cubix-sysv* )
2542 machine=intel386 opsys=usg5-3 2503 machine=intel386 opsys=usg5-3
2543 ;; 2504 ;;
2544 2505
2545 ## Cydra 5
2546 cydra*-cydrome-sysv* )
2547 machine=cydra5 opsys=usg5-3
2548 ;;
2549
2550 ## Data General AViiON Machines
2551 ## DG changed naming conventions with the release of 5.4.4.10, they
2552 ## dropped the initial 5.4 but left the intervening R. Because of the
2553 ## R this shouldn't conflict with older versions of the OS (which I
2554 ## think were named like dgux4.*). In addition, DG new AViiONs series
2555 ## uses either Motorola M88k or Intel Pentium CPUs.
2556 m88k-dg-dguxR4.* | m88k-dg-dgux4* )
2557 machine=aviion opsys=dgux4
2558 ;;
2559 m88k-dg-dgux5.4R3* | m88k-dg-dgux5.4.3* )
2560 ## This name is dgux5-4-3 instead of dgux5-4r3
2561 ## to avoid a file name conflict on MSDOS.
2562 machine=aviion opsys=dgux5-4-3
2563 ;;
2564 m88k-dg-dgux5.4R2* | m88k-dg-dgux5.4.2* )
2565 machine=aviion opsys=dgux5-4r2
2566 ;;
2567 m88k-dg-dgux* )
2568 machine=aviion opsys=dgux
2569 ;;
2570
2571 ## Data General AViiON Intel (x86) Machines
2572 ## Exists from 5.4.3 (current i586-dg-dguxR4.11)
2573 ## Ehud Karni, 1998-may-30, ehud@unix.simonwiesel.co.il
2574 i[345]86-dg-dguxR4* )
2575 machine=aviion-intel opsys=dgux4
2576 ;;
2577
2578 ## DECstations
2579 mips-dec-ultrix[0-3].* | mips-dec-ultrix4.0* | mips-dec-bsd4.2* ) 2506 mips-dec-ultrix[0-3].* | mips-dec-ultrix4.0* | mips-dec-bsd4.2* )
2580 machine=pmax opsys=bsd4-2 2507 machine=pmax opsys=bsd4-2
2581 ;; 2508 ;;
@@ -2592,96 +2519,6 @@ _ACEOF
2592 machine=pmax opsys=mach-bsd4-3 2519 machine=pmax opsys=mach-bsd4-3
2593 ;; 2520 ;;
2594 2521
2595 ## Motorola Delta machines
2596 m68k-motorola-sysv* | m68000-motorola-sysv* )
2597 machine=delta opsys=usg5-3
2598 if test -z "`type gnucc | grep 'not found'`"
2599 then
2600 if test -s /etc/167config
2601 then CC="gnucc -m68040"
2602 else CC="gnucc -m68881"
2603 fi
2604 else
2605 if test -z "`type gcc | grep 'not found'`"
2606 then CC=gcc
2607 else CC=cc
2608 fi
2609 fi
2610 ;;
2611 m88k-motorola-sysv4* )
2612 # jbotte@bnr.ca says that UNIX_System_V <hostName> 4.0 R40V4.3 m88k mc88110
2613 # needs POSIX_SIGNALS and therefore needs usg5-4-2.
2614 # I hope there are not other 4.0 versions for this machine
2615 # which really need usg5-4 instead.
2616 machine=delta88k opsys=usg5-4-2
2617 ;;
2618 m88k-motorola-sysv* | m88k-motorola-m88kbcs* )
2619 machine=delta88k opsys=usg5-3
2620 ;;
2621
2622 ## Dual machines
2623 m68*-dual-sysv* )
2624 machine=dual opsys=usg5-2
2625 ;;
2626 m68*-dual-uniplus* )
2627 machine=dual opsys=unipl5-2
2628 ;;
2629
2630 ## Elxsi 6400
2631 elxsi-elxsi-sysv* )
2632 machine=elxsi opsys=usg5-2
2633 ;;
2634
2635 ## Encore machines
2636 ns16k-encore-bsd* )
2637 machine=ns16000 opsys=umax
2638 ;;
2639
2640 ## The GEC 63 - apparently, this port isn't really finished yet.
2641 # I'm sure we finished off the last of the machines, though. -- fx
2642
2643 ## Gould Power Node and NP1
2644 pn-gould-bsd4.2* )
2645 machine=gould opsys=bsd4-2
2646 ;;
2647 pn-gould-bsd4.3* )
2648 machine=gould opsys=bsd4-3
2649 ;;
2650 np1-gould-bsd* )
2651 machine=gould-np1 opsys=bsd4-3
2652 ;;
2653
2654 ## Harris Night Hawk machines running CX/UX (a 5000 looks just like a 4000
2655 ## as far as Emacs is concerned).
2656 m88k-harris-cxux* )
2657 # Build needs to be different on 7.0 and later releases
2658 case "`uname -r`" in
2659 [56].[0-9] ) machine=nh4000 opsys=cxux ;;
2660 [7].[0-9] ) machine=nh4000 opsys=cxux7 ;;
2661 esac
2662 NON_GNU_CPP="/lib/cpp"
2663 ;;
2664 ## Harris ecx or gcx running CX/UX (Series 1200, Series 3000)
2665 m68k-harris-cxux* )
2666 machine=nh3000 opsys=cxux
2667 ;;
2668 ## Harris power pc NightHawk running Power UNIX (Series 6000)
2669 powerpc-harris-powerunix )
2670 machine=nh6000 opsys=powerunix
2671 NON_GNU_CPP="cc -Xo -E -P"
2672 ;;
2673 ## SR2001/SR2201 running HI-UX/MPP
2674 hppa1.1-hitachi-hiuxmpp* )
2675 machine=sr2k opsys=hiuxmpp
2676 ;;
2677 hppa1.1-hitachi-hiuxwe2* )
2678 machine=sr2k opsys=hiuxwe2
2679 ;;
2680 ## Honeywell XPS100
2681 xps*-honeywell-sysv* )
2682 machine=xps100 opsys=usg5-2
2683 ;;
2684
2685 ## HP 9000 series 200 or 300 2522 ## HP 9000 series 200 or 300
2686 m68*-hp-bsd* ) 2523 m68*-hp-bsd* )
2687 machine=hp9000s300 opsys=bsd4-3 2524 machine=hp9000s300 opsys=bsd4-3
@@ -2743,21 +2580,7 @@ _ACEOF
2743 machine=hp800 opsys=nextstep 2580 machine=hp800 opsys=nextstep
2744 ;; 2581 ;;
2745 2582
2746 ## Orion machines
2747 orion-orion-bsd* )
2748 machine=orion opsys=bsd4-2
2749 ;;
2750 clipper-orion-bsd* )
2751 machine=orion105 opsys=bsd4-2
2752 ;;
2753
2754 ## IBM machines 2583 ## IBM machines
2755 i[3456]86-ibm-aix1.1* )
2756 machine=ibmps2-aix opsys=usg5-2-2
2757 ;;
2758 i[3456]86-ibm-aix1.[23]* | i[3456]86-ibm-aix* )
2759 machine=ibmps2-aix opsys=usg5-3
2760 ;;
2761 i370-ibm-aix*) 2584 i370-ibm-aix*)
2762 machine=ibm370aix opsys=usg5-3 2585 machine=ibm370aix opsys=usg5-3
2763 ;; 2586 ;;
@@ -2794,64 +2617,12 @@ _ACEOF
2794 rs6000-ibm-aix* | powerpc-ibm-aix* ) 2617 rs6000-ibm-aix* | powerpc-ibm-aix* )
2795 machine=ibmrs6000 opsys=aix3-2 2618 machine=ibmrs6000 opsys=aix3-2
2796 ;; 2619 ;;
2797 romp-ibm-bsd4.3* )
2798 machine=ibmrt opsys=bsd4-3
2799 ;;
2800 romp-ibm-bsd4.2* )
2801 machine=ibmrt opsys=bsd4-2
2802 ;;
2803 romp-ibm-aos4.3* )
2804 machine=ibmrt opsys=bsd4-3
2805 ;;
2806 romp-ibm-aos4.2* )
2807 machine=ibmrt opsys=bsd4-2
2808 ;;
2809 romp-ibm-aos* )
2810 machine=ibmrt opsys=bsd4-3
2811 ;;
2812 romp-ibm-bsd* )
2813 machine=ibmrt opsys=bsd4-3
2814 ;;
2815 romp-ibm-aix* )
2816 machine=ibmrt-aix opsys=usg5-2-2
2817 ;;
2818
2819 ## Integrated Solutions `Optimum V'
2820 m68*-isi-bsd4.2* )
2821 machine=isi-ov opsys=bsd4-2
2822 ;;
2823 m68*-isi-bsd4.3* )
2824 machine=isi-ov opsys=bsd4-3
2825 ;;
2826
2827 ## Intel 386 machines where we do care about the manufacturer
2828 i[3456]86-intsys-sysv* )
2829 machine=is386 opsys=usg5-2-2
2830 ;;
2831 2620
2832 ## Prime EXL 2621 ## Prime EXL
2833 i[3456]86-prime-sysv* ) 2622 i[3456]86-prime-sysv* )
2834 machine=i386 opsys=usg5-3 2623 machine=i386 opsys=usg5-3
2835 ;; 2624 ;;
2836 2625
2837 ## Sequent Symmetry running Dynix
2838 i[3456]86-sequent-bsd* )
2839 machine=symmetry opsys=bsd4-3
2840 ;;
2841
2842 ## Sequent Symmetry running ptx 4, which is a modified SVR4.
2843 i[3456]86-sequent-ptx4* | i[3456]86-sequent-sysv4* )
2844 machine=sequent-ptx opsys=ptx4
2845 NON_GNU_CPP=/lib/cpp
2846 ;;
2847
2848 ## Sequent Symmetry running DYNIX/ptx
2849 ## Use the old cpp rather than the newer ANSI one.
2850 i[3456]86-sequent-ptx* )
2851 machine=sequent-ptx opsys=ptx
2852 NON_GNU_CPP="/lib/cpp"
2853 ;;
2854
2855 ## ncr machine running svr4.3. 2626 ## ncr machine running svr4.3.
2856 i[3456]86-ncr-sysv4.3 ) 2627 i[3456]86-ncr-sysv4.3 )
2857 machine=ncr386 opsys=usg5-4-3 2628 machine=ncr386 opsys=usg5-4-3
@@ -2863,33 +2634,11 @@ _ACEOF
2863 machine=ncr386 opsys=usg5-4-2 2634 machine=ncr386 opsys=usg5-4-2
2864 ;; 2635 ;;
2865 2636
2866 ## Intel Paragon OSF/1
2867 i860-intel-osf1* )
2868 machine=paragon opsys=osf1 NON_GNU_CPP=/usr/mach/lib/cpp
2869 ;;
2870
2871 ## Intel 860
2872 i860-*-sysv4* )
2873 machine=i860 opsys=usg5-4
2874 NON_GNU_CC="/bin/cc" # Ie, not the one in /usr/ucb/cc.
2875 NON_GNU_CPP="/usr/ccs/lib/cpp" # cc -E tokenizes macro expansion.
2876 ;;
2877
2878 ## Macintosh PowerPC 2637 ## Macintosh PowerPC
2879 powerpc*-*-linux-gnu* ) 2638 powerpc*-*-linux-gnu* )
2880 machine=macppc opsys=gnu-linux 2639 machine=macppc opsys=gnu-linux
2881 ;; 2640 ;;
2882 2641
2883 ## Masscomp machines
2884 m68*-masscomp-rtu* )
2885 machine=masscomp opsys=rtu
2886 ;;
2887
2888 ## Megatest machines
2889 m68*-megatest-bsd* )
2890 machine=mega68 opsys=bsd4-2
2891 ;;
2892
2893 ## Workstations sold by MIPS 2642 ## Workstations sold by MIPS
2894 ## This is not necessarily all workstations using the MIPS processor - 2643 ## This is not necessarily all workstations using the MIPS processor -
2895 ## Irises are produced by SGI, and DECstations by DEC. 2644 ## Irises are produced by SGI, and DECstations by DEC.
@@ -2927,54 +2676,11 @@ _ACEOF
2927 machine=m68k opsys=nextstep 2676 machine=m68k opsys=nextstep
2928 ;; 2677 ;;
2929 2678
2930 ## The complete machine from National Semiconductor
2931 ns32k-ns-genix* )
2932 machine=ns32000 opsys=usg5-2
2933 ;;
2934
2935 ## NCR machines
2936 m68*-ncr-sysv2* | m68*-ncr-sysvr2* )
2937 machine=tower32 opsys=usg5-2-2
2938 ;;
2939 m68*-ncr-sysv3* | m68*-ncr-sysvr3* )
2940 machine=tower32v3 opsys=usg5-3
2941 ;;
2942
2943 ## NEC EWS4800 2679 ## NEC EWS4800
2944 mips-nec-sysv4*) 2680 mips-nec-sysv4*)
2945 machine=ews4800 opsys=ux4800 2681 machine=ews4800 opsys=ux4800
2946 ;; 2682 ;;
2947 2683
2948 ## Nixdorf Targon 31
2949 m68*-nixdorf-sysv* )
2950 machine=targon31 opsys=usg5-2-2
2951 ;;
2952
2953 ## Nu (TI or LMI)
2954 m68*-nu-sysv* )
2955 machine=nu opsys=usg5-2
2956 ;;
2957
2958 ## Plexus
2959 m68*-plexus-sysv* )
2960 machine=plexus opsys=usg5-2
2961 ;;
2962
2963 ## Pyramid machines
2964 ## I don't really have any idea what sort of processor the Pyramid has,
2965 ## so I'm assuming it is its own architecture.
2966 pyramid-pyramid-bsd* )
2967 machine=pyramid opsys=bsd4-2
2968 ;;
2969
2970 ## Sequent Balance
2971 ns32k-sequent-bsd4.2* )
2972 machine=sequent opsys=bsd4-2
2973 ;;
2974 ns32k-sequent-bsd4.3* )
2975 machine=sequent opsys=bsd4-3
2976 ;;
2977
2978 ## Siemens Nixdorf 2684 ## Siemens Nixdorf
2979 mips-siemens-sysv* | mips-sni-sysv*) 2685 mips-siemens-sysv* | mips-sni-sysv*)
2980 machine=mips-siemens opsys=usg5-4 2686 machine=mips-siemens opsys=usg5-4
@@ -2983,20 +2689,7 @@ _ACEOF
2983 ;; 2689 ;;
2984 2690
2985 ## Silicon Graphics machines 2691 ## Silicon Graphics machines
2986 ## Iris 2500 and Iris 2500 Turbo (aka the Iris 3030)
2987 m68*-sgi-iris3.5* )
2988 machine=irist opsys=iris3-5
2989 ;;
2990 m68*-sgi-iris3.6* | m68*-sgi-iris*)
2991 machine=irist opsys=iris3-6
2992 ;;
2993 ## Iris 4D 2692 ## Iris 4D
2994 mips-sgi-irix3* )
2995 machine=iris4d opsys=irix3-3
2996 ;;
2997 mips-sgi-irix4* )
2998 machine=iris4d opsys=irix4-0
2999 ;;
3000 mips-sgi-irix6.5 ) 2693 mips-sgi-irix6.5 )
3001 machine=iris4d opsys=irix6-5 2694 machine=iris4d opsys=irix6-5
3002 # Without defining _LANGUAGE_C, things get masked out in the headers 2695 # Without defining _LANGUAGE_C, things get masked out in the headers
@@ -3020,31 +2713,6 @@ _ACEOF
3020 machine=iris4d opsys=irix5-2 2713 machine=iris4d opsys=irix5-2
3021 ;; 2714 ;;
3022 2715
3023 ## SONY machines
3024 m68*-sony-bsd4.2* )
3025 machine=news opsys=bsd4-2
3026 ;;
3027 m68*-sony-bsd4.3* )
3028 machine=news opsys=bsd4-3
3029 ;;
3030 m68*-sony-newsos3* | m68*-sony-news3*)
3031 machine=news opsys=bsd4-3
3032 ;;
3033 mips-sony-bsd* | mips-sony-newsos4* | mips-sony-news4*)
3034 machine=news-risc opsys=bsd4-3
3035 ;;
3036 mips-sony-newsos6* )
3037 machine=news-r6 opsys=newsos6
3038 ;;
3039 mips-sony-news* )
3040 machine=news-risc opsys=newsos5
3041 ;;
3042
3043 ## Stride
3044 m68*-stride-sysv* )
3045 machine=stride opsys=usg5-2
3046 ;;
3047
3048 ## Suns 2716 ## Suns
3049 sparc-*-linux-gnu* | sparc64-*-linux-gnu* ) 2717 sparc-*-linux-gnu* | sparc64-*-linux-gnu* )
3050 machine=sparc opsys=gnu-linux 2718 machine=sparc opsys=gnu-linux
@@ -3054,10 +2722,6 @@ _ACEOF
3054 | i[3456]86-*-solaris2* | i[3456]86-*-sunos5* | powerpc*-*-solaris2* \ 2722 | i[3456]86-*-solaris2* | i[3456]86-*-sunos5* | powerpc*-*-solaris2* \
3055 | rs6000-*-solaris2*) 2723 | rs6000-*-solaris2*)
3056 case "${canonical}" in 2724 case "${canonical}" in
3057 m68*-sunos1* ) machine=sun1 ;;
3058 m68*-sunos2* ) machine=sun2 ;;
3059 m68* ) machine=sun3 ;;
3060 i[3456]86-sun-sunos[34]* ) machine=sun386 ;;
3061 i[3456]86-*-* ) machine=intel386 ;; 2725 i[3456]86-*-* ) machine=intel386 ;;
3062 amd64-*-*|x86_64-*-*) machine=amdx86-64 ;; 2726 amd64-*-*|x86_64-*-*) machine=amdx86-64 ;;
3063 powerpcle* ) machine=powerpcle ;; 2727 powerpcle* ) machine=powerpcle ;;
@@ -3066,26 +2730,6 @@ _ACEOF
3066 * ) unported=yes ;; 2730 * ) unported=yes ;;
3067 esac 2731 esac
3068 case "${canonical}" in 2732 case "${canonical}" in
3069 ## The Sun386 didn't get past 4.0.
3070 i[3456]86-*-sunos4 ) opsys=sunos4-0 ;;
3071 *-sunos4.0* ) opsys=sunos4-0 ;;
3072 *-sunos4.1.[3-9]*noshare )
3073 ## This name is sunos413 instead of sunos4-1-3
3074 ## to avoid a file name conflict on MSDOS.
3075 opsys=sunos413
3076 NON_GNU_CPP=/usr/lib/cpp
3077 NON_GCC_TEST_OPTIONS=-Bstatic
3078 GCC_TEST_OPTIONS=-static
3079 ;;
3080 *-sunos4.1.[3-9]* | *-sunos4shr*)
3081 opsys=sunos4shr
3082 NON_GNU_CPP=/usr/lib/cpp
3083 ;;
3084 *-sunos4* | *-sunos )
3085 opsys=sunos4-1
3086 NON_GCC_TEST_OPTIONS=-Bstatic
3087 GCC_TEST_OPTIONS=-static
3088 ;;
3089 *-sunos5.3* | *-solaris2.3* ) 2733 *-sunos5.3* | *-solaris2.3* )
3090 opsys=sol2-3 2734 opsys=sol2-3
3091 NON_GNU_CPP=/usr/ccs/lib/cpp 2735 NON_GNU_CPP=/usr/ccs/lib/cpp
@@ -3128,50 +2772,11 @@ _ACEOF
3128 machine=sparc opsys=nextstep 2772 machine=sparc opsys=nextstep
3129 ;; 2773 ;;
3130 2774
3131 ## Tadpole 68k
3132 m68*-tadpole-sysv* )
3133 machine=tad68k opsys=usg5-3
3134 ;;
3135
3136 ## Tahoe machines
3137 tahoe-tahoe-bsd4.2* )
3138 machine=tahoe opsys=bsd4-2
3139 ;;
3140 tahoe-tahoe-bsd4.3* )
3141 machine=tahoe opsys=bsd4-3
3142 ;;
3143
3144 ## Tandem Integrity S2 2775 ## Tandem Integrity S2
3145 mips-tandem-sysv* ) 2776 mips-tandem-sysv* )
3146 machine=tandem-s2 opsys=usg5-3 2777 machine=tandem-s2 opsys=usg5-3
3147 ;; 2778 ;;
3148 2779
3149 ## Tektronix XD88
3150 m88k-tektronix-sysv3* )
3151 machine=tekxd88 opsys=usg5-3
3152 ;;
3153
3154 ## Tektronix 16000 box (6130?)
3155 ns16k-tektronix-bsd* )
3156 machine=ns16000 opsys=bsd4-2
3157 ;;
3158 ## Tektronix 4300
3159 ## src/m/tek4300.h hints that this is a m68k machine.
3160 m68*-tektronix-bsd* )
3161 machine=tek4300 opsys=bsd4-3
3162 ;;
3163
3164 ## Titan P2 or P3
3165 ## We seem to have lost the machine-description file titan.h!
3166 titan-titan-sysv* )
3167 machine=titan opsys=usg5-3
3168 ;;
3169
3170 ## Ustation E30 (SS5E)
3171 m68*-unisys-uniplus* )
3172 machine=ustation opsystem=unipl5-2
3173 ;;
3174
3175 ## Vaxen. 2780 ## Vaxen.
3176 vax-dec-* ) 2781 vax-dec-* )
3177 machine=vax 2782 machine=vax
@@ -3186,18 +2791,6 @@ _ACEOF
3186 esac 2791 esac
3187 ;; 2792 ;;
3188 2793
3189 ## Whitechapel MG1
3190 ns16k-whitechapel-* )
3191 machine=mg1
3192 ## We don't know what sort of OS runs on these; we'll let the
3193 ## operating system guessing code below try.
3194 ;;
3195
3196 ## Wicat
3197 m68*-wicat-sysv* )
3198 machine=wicat opsys=usg5-2
3199 ;;
3200
3201 ## IA-64 2794 ## IA-64
3202 ia64*-*-linux* ) 2795 ia64*-*-linux* )
3203 machine=ia64 opsys=gnu-linux 2796 machine=ia64 opsys=gnu-linux
@@ -3211,25 +2804,8 @@ _ACEOF
3211 *-darwin* ) opsys=darwin 2804 *-darwin* ) opsys=darwin
3212 CPP="${CC-cc} -E -no-cpp-precomp" 2805 CPP="${CC-cc} -E -no-cpp-precomp"
3213 ;; 2806 ;;
3214 *-isc1.* | *-isc2.[01]* ) opsys=386-ix ;;
3215 *-isc2.2* ) opsys=isc2-2 ;;
3216 *-isc4.0* ) opsys=isc4-0 ;;
3217 *-isc4.* ) opsys=isc4-1
3218 GCC_TEST_OPTIONS=-posix
3219 NON_GCC_TEST_OPTIONS=-Xp
3220 ;;
3221 *-isc* ) opsys=isc3-0 ;;
3222 *-esix5* ) opsys=esix5r4; NON_GNU_CPP=/usr/lib/cpp ;;
3223 *-esix* ) opsys=esix ;;
3224 *-xenix* ) opsys=xenix ;; 2807 *-xenix* ) opsys=xenix ;;
3225 *-linux-gnu* ) opsys=gnu-linux ;; 2808 *-linux-gnu* ) opsys=gnu-linux ;;
3226 *-sco3.2v4* ) opsys=sco4 ; NON_GNU_CPP=/lib/cpp ;;
3227 *-sco3.2v5* ) opsys=sco5
3228 NON_GNU_CPP=/lib/cpp
3229 # Prevent -belf from being passed to $CPP.
3230 # /lib/cpp does not accept it.
3231 OVERRIDE_CPPFLAGS=" "
3232 ;;
3233 *-sysv4.2uw* ) opsys=unixware; NON_GNU_CPP=/lib/cpp ;; 2809 *-sysv4.2uw* ) opsys=unixware; NON_GNU_CPP=/lib/cpp ;;
3234 *-sysv5uw* ) opsys=unixware; NON_GNU_CPP=/lib/cpp ;; 2810 *-sysv5uw* ) opsys=unixware; NON_GNU_CPP=/lib/cpp ;;
3235 *-sysv5OpenUNIX* ) opsys=unixware; NON_GNU_CPP=/lib/cpp ;; 2811 *-sysv5OpenUNIX* ) opsys=unixware; NON_GNU_CPP=/lib/cpp ;;
@@ -3256,18 +2832,13 @@ _ACEOF
3256 RANLIB="ar -ts" 2832 RANLIB="ar -ts"
3257 ;; 2833 ;;
3258 2834
3259 ## UXP/V
3260 f301-fujitsu-uxpv4.1)
3261 machine=f301 opsys=uxpv
3262 ;;
3263
3264 ## AMD x86-64 Linux-based GNU system 2835 ## AMD x86-64 Linux-based GNU system
3265 x86_64-*-linux-gnu* ) 2836 x86_64-*-linux-gnu* )
3266 machine=amdx86-64 opsys=gnu-linux 2837 machine=amdx86-64 opsys=gnu-linux
3267 ;; 2838 ;;
3268 2839
3269 ## Tensilica Xtensa Linux-based GNU system 2840 ## Tensilica Xtensa Linux-based GNU system
3270 xtensa-*-linux-gnu* ) 2841 xtensa*-*-linux-gnu* )
3271 machine=xtensa opsys=gnu-linux 2842 machine=xtensa opsys=gnu-linux
3272 ;; 2843 ;;
3273 2844
@@ -6038,14 +5609,14 @@ fi
6038 5609
6039 5610
6040 5611
6041### The standard library on x86-64 GNU/Linux distributions can 5612### The standard library on x86-64 and s390x GNU/Linux distributions can
6042### be located in either /usr/lib64 or /usr/lib. 5613### be located in either /usr/lib64 or /usr/lib.
6043case "${canonical}" in 5614case "${canonical}" in
6044 x86_64-*-linux-gnu* ) 5615 x86_64-*-linux-gnu* | s390x-*-linux-gnu* )
6045 if test -d /usr/lib64; then 5616 if test -d /usr/lib64; then
6046 5617
6047cat >>confdefs.h <<\_ACEOF 5618cat >>confdefs.h <<\_ACEOF
6048#define HAVE_X86_64_LIB64_DIR 1 5619#define HAVE_LIB64_DIR 1
6049_ACEOF 5620_ACEOF
6050 5621
6051fi 5622fi
@@ -6513,14 +6084,10 @@ fi
6513 6084
6514 ALSA_REQUIRED=1.0.0 6085 ALSA_REQUIRED=1.0.0
6515 ALSA_MODULES="alsa >= $ALSA_REQUIRED" 6086 ALSA_MODULES="alsa >= $ALSA_REQUIRED"
6516 if test "X${with_pkg_config_prog}" != X; then
6517 PKG_CONFIG="${with_pkg_config_prog}"
6518 fi
6519 6087
6520 succeeded=no 6088 succeeded=no
6521 6089
6522 if test -z "$PKG_CONFIG"; then 6090 # Extract the first word of "pkg-config", so it can be a program name with args.
6523 # Extract the first word of "pkg-config", so it can be a program name with args.
6524set dummy pkg-config; ac_word=$2 6091set dummy pkg-config; ac_word=$2
6525{ echo "$as_me:$LINENO: checking for $ac_word" >&5 6092{ echo "$as_me:$LINENO: checking for $ac_word" >&5
6526echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } 6093echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
@@ -6561,7 +6128,6 @@ echo "${ECHO_T}no" >&6; }
6561fi 6128fi
6562 6129
6563 6130
6564 fi
6565 6131
6566 if test "$PKG_CONFIG" = "no" ; then 6132 if test "$PKG_CONFIG" = "no" ; then
6567 HAVE_ALSA=no 6133 HAVE_ALSA=no
@@ -9812,22 +9378,6 @@ case ${HAVE_X11} in
9812 yes ) HAVE_MENUS=yes ;; 9378 yes ) HAVE_MENUS=yes ;;
9813esac 9379esac
9814 9380
9815if test "${opsys}" = "hpux9"; then
9816 case "${x_libraries}" in
9817 *X11R4* )
9818 opsysfile="s/hpux9-x11r4.h"
9819 ;;
9820 esac
9821fi
9822
9823if test "${opsys}" = "hpux9shr"; then
9824 case "${x_libraries}" in
9825 *X11R4* )
9826 opsysfile="s/hpux9shxr4.h"
9827 ;;
9828 esac
9829fi
9830
9831### Compute the unexec source name from the object name. 9381### Compute the unexec source name from the object name.
9832UNEXEC_SRC="`echo ${unexec} | sed 's/\.o/.c/'`" 9382UNEXEC_SRC="`echo ${unexec} | sed 's/\.o/.c/'`"
9833 9383
@@ -11162,18 +10712,13 @@ fi
11162HAVE_RSVG=no 10712HAVE_RSVG=no
11163if test "${HAVE_X11}" = "yes" || test "${HAVE_CARBON}" = "yes"; then 10713if test "${HAVE_X11}" = "yes" || test "${HAVE_CARBON}" = "yes"; then
11164 if test "${with_rsvg}" != "no"; then 10714 if test "${with_rsvg}" != "no"; then
11165 if test "X${with_pkg_config_prog}" != X; then
11166 PKG_CONFIG="${with_pkg_config_prog}"
11167 fi
11168
11169 RSVG_REQUIRED=2.0.0 10715 RSVG_REQUIRED=2.0.0
11170 RSVG_MODULE="librsvg-2.0 >= $RSVG_REQUIRED" 10716 RSVG_MODULE="librsvg-2.0 >= $RSVG_REQUIRED"
11171 10717
11172 10718
11173 succeeded=no 10719 succeeded=no
11174 10720
11175 if test -z "$PKG_CONFIG"; then 10721 # Extract the first word of "pkg-config", so it can be a program name with args.
11176 # Extract the first word of "pkg-config", so it can be a program name with args.
11177set dummy pkg-config; ac_word=$2 10722set dummy pkg-config; ac_word=$2
11178{ echo "$as_me:$LINENO: checking for $ac_word" >&5 10723{ echo "$as_me:$LINENO: checking for $ac_word" >&5
11179echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } 10724echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
@@ -11214,7 +10759,6 @@ echo "${ECHO_T}no" >&6; }
11214fi 10759fi
11215 10760
11216 10761
11217 fi
11218 10762
11219 if test "$PKG_CONFIG" = "no" ; then 10763 if test "$PKG_CONFIG" = "no" ; then
11220 : 10764 :
@@ -11297,14 +10841,10 @@ echo "$as_me: error: Conflicting options, --with-gtk is incompatible with --with
11297 GTK_REQUIRED=2.6 10841 GTK_REQUIRED=2.6
11298 GTK_MODULES="gtk+-2.0 >= $GTK_REQUIRED glib-2.0 >= $GLIB_REQUIRED" 10842 GTK_MODULES="gtk+-2.0 >= $GTK_REQUIRED glib-2.0 >= $GLIB_REQUIRED"
11299 10843
11300 if test "X${with_pkg_config_prog}" != X; then
11301 PKG_CONFIG="${with_pkg_config_prog}"
11302 fi
11303 10844
11304 succeeded=no 10845 succeeded=no
11305 10846
11306 if test -z "$PKG_CONFIG"; then 10847 # Extract the first word of "pkg-config", so it can be a program name with args.
11307 # Extract the first word of "pkg-config", so it can be a program name with args.
11308set dummy pkg-config; ac_word=$2 10848set dummy pkg-config; ac_word=$2
11309{ echo "$as_me:$LINENO: checking for $ac_word" >&5 10849{ echo "$as_me:$LINENO: checking for $ac_word" >&5
11310echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } 10850echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
@@ -11345,7 +10885,6 @@ echo "${ECHO_T}no" >&6; }
11345fi 10885fi
11346 10886
11347 10887
11348 fi
11349 10888
11350 if test "$PKG_CONFIG" = "no" ; then 10889 if test "$PKG_CONFIG" = "no" ; then
11351 pkg_check_gtk=no 10890 pkg_check_gtk=no
@@ -12063,8 +11602,7 @@ if test "${with_dbus}" = "yes"; then
12063 11602
12064 succeeded=no 11603 succeeded=no
12065 11604
12066 if test -z "$PKG_CONFIG"; then 11605 # Extract the first word of "pkg-config", so it can be a program name with args.
12067 # Extract the first word of "pkg-config", so it can be a program name with args.
12068set dummy pkg-config; ac_word=$2 11606set dummy pkg-config; ac_word=$2
12069{ echo "$as_me:$LINENO: checking for $ac_word" >&5 11607{ echo "$as_me:$LINENO: checking for $ac_word" >&5
12070echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } 11608echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
@@ -12105,7 +11643,6 @@ echo "${ECHO_T}no" >&6; }
12105fi 11643fi
12106 11644
12107 11645
12108 fi
12109 11646
12110 if test "$PKG_CONFIG" = "no" ; then 11647 if test "$PKG_CONFIG" = "no" ; then
12111 HAVE_DBUS=no 11648 HAVE_DBUS=no
@@ -12930,8 +12467,7 @@ if test "${HAVE_X11}" = "yes"; then
12930 12467
12931 succeeded=no 12468 succeeded=no
12932 12469
12933 if test -z "$PKG_CONFIG"; then 12470 # Extract the first word of "pkg-config", so it can be a program name with args.
12934 # Extract the first word of "pkg-config", so it can be a program name with args.
12935set dummy pkg-config; ac_word=$2 12471set dummy pkg-config; ac_word=$2
12936{ echo "$as_me:$LINENO: checking for $ac_word" >&5 12472{ echo "$as_me:$LINENO: checking for $ac_word" >&5
12937echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } 12473echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
@@ -12972,7 +12508,6 @@ echo "${ECHO_T}no" >&6; }
12972fi 12508fi
12973 12509
12974 12510
12975 fi
12976 12511
12977 if test "$PKG_CONFIG" = "no" ; then 12512 if test "$PKG_CONFIG" = "no" ; then
12978 HAVE_XFT=no 12513 HAVE_XFT=no
@@ -13251,10 +12786,10 @@ elif test "x${with_freetype}" != "xno"; then
13251 PKG_CONFIG="${with_pkg_config_prog}" 12786 PKG_CONFIG="${with_pkg_config_prog}"
13252 fi 12787 fi
13253 12788
12789
13254 succeeded=no 12790 succeeded=no
13255 12791
13256 if test -z "$PKG_CONFIG"; then 12792 # Extract the first word of "pkg-config", so it can be a program name with args.
13257 # Extract the first word of "pkg-config", so it can be a program name with args.
13258set dummy pkg-config; ac_word=$2 12793set dummy pkg-config; ac_word=$2
13259{ echo "$as_me:$LINENO: checking for $ac_word" >&5 12794{ echo "$as_me:$LINENO: checking for $ac_word" >&5
13260echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } 12795echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
@@ -13295,7 +12830,6 @@ echo "${ECHO_T}no" >&6; }
13295fi 12830fi
13296 12831
13297 12832
13298 fi
13299 12833
13300 if test "$PKG_CONFIG" = "no" ; then 12834 if test "$PKG_CONFIG" = "no" ; then
13301 HAVE_FREETYPE=no 12835 HAVE_FREETYPE=no
@@ -13350,8 +12884,7 @@ echo "${ECHO_T}no" >&6; }
13350 12884
13351 succeeded=no 12885 succeeded=no
13352 12886
13353 if test -z "$PKG_CONFIG"; then 12887 # Extract the first word of "pkg-config", so it can be a program name with args.
13354 # Extract the first word of "pkg-config", so it can be a program name with args.
13355set dummy pkg-config; ac_word=$2 12888set dummy pkg-config; ac_word=$2
13356{ echo "$as_me:$LINENO: checking for $ac_word" >&5 12889{ echo "$as_me:$LINENO: checking for $ac_word" >&5
13357echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } 12890echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
@@ -13392,7 +12925,6 @@ echo "${ECHO_T}no" >&6; }
13392fi 12925fi
13393 12926
13394 12927
13395 fi
13396 12928
13397 if test "$PKG_CONFIG" = "no" ; then 12929 if test "$PKG_CONFIG" = "no" ; then
13398 HAVE_FC=no 12930 HAVE_FC=no
@@ -13463,8 +12995,7 @@ _ACEOF
13463 12995
13464 succeeded=no 12996 succeeded=no
13465 12997
13466 if test -z "$PKG_CONFIG"; then 12998 # Extract the first word of "pkg-config", so it can be a program name with args.
13467 # Extract the first word of "pkg-config", so it can be a program name with args.
13468set dummy pkg-config; ac_word=$2 12999set dummy pkg-config; ac_word=$2
13469{ echo "$as_me:$LINENO: checking for $ac_word" >&5 13000{ echo "$as_me:$LINENO: checking for $ac_word" >&5
13470echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } 13001echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
@@ -13505,7 +13036,6 @@ echo "${ECHO_T}no" >&6; }
13505fi 13036fi
13506 13037
13507 13038
13508 fi
13509 13039
13510 if test "$PKG_CONFIG" = "no" ; then 13040 if test "$PKG_CONFIG" = "no" ; then
13511 pkg_check_libotf=no 13041 pkg_check_libotf=no
@@ -13574,8 +13104,7 @@ if test "${with_m17n_flt}" != "no"; then
13574 13104
13575 succeeded=no 13105 succeeded=no
13576 13106
13577 if test -z "$PKG_CONFIG"; then 13107 # Extract the first word of "pkg-config", so it can be a program name with args.
13578 # Extract the first word of "pkg-config", so it can be a program name with args.
13579set dummy pkg-config; ac_word=$2 13108set dummy pkg-config; ac_word=$2
13580{ echo "$as_me:$LINENO: checking for $ac_word" >&5 13109{ echo "$as_me:$LINENO: checking for $ac_word" >&5
13581echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } 13110echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
@@ -13616,7 +13145,6 @@ echo "${ECHO_T}no" >&6; }
13616fi 13145fi
13617 13146
13618 13147
13619 fi
13620 13148
13621 if test "$PKG_CONFIG" = "no" ; then 13149 if test "$PKG_CONFIG" = "no" ; then
13622 pkg_check_m17n_flt=no 13150 pkg_check_m17n_flt=no
@@ -19104,13 +18632,11 @@ _ACEOF
19104cat confdefs.h >>conftest.$ac_ext 18632cat confdefs.h >>conftest.$ac_ext
19105cat >>conftest.$ac_ext <<_ACEOF 18633cat >>conftest.$ac_ext <<_ACEOF
19106/* end confdefs.h. */ 18634/* end confdefs.h. */
19107#include <sys/types.h> /* for off_t */ 18635#include <stdio.h>
19108 #include <stdio.h>
19109int 18636int
19110main () 18637main ()
19111{ 18638{
19112int (*fp) (FILE *, off_t, int) = fseeko; 18639return fseeko (stdin, 0, 0) && (fseeko) (stdin, 0, 0);
19113 return fseeko (stdin, 0, 0) && fp (stdin, 0, 0);
19114 ; 18640 ;
19115 return 0; 18641 return 0;
19116} 18642}
@@ -19150,13 +18676,11 @@ cat confdefs.h >>conftest.$ac_ext
19150cat >>conftest.$ac_ext <<_ACEOF 18676cat >>conftest.$ac_ext <<_ACEOF
19151/* end confdefs.h. */ 18677/* end confdefs.h. */
19152#define _LARGEFILE_SOURCE 1 18678#define _LARGEFILE_SOURCE 1
19153#include <sys/types.h> /* for off_t */ 18679#include <stdio.h>
19154 #include <stdio.h>
19155int 18680int
19156main () 18681main ()
19157{ 18682{
19158int (*fp) (FILE *, off_t, int) = fseeko; 18683return fseeko (stdin, 0, 0) && (fseeko) (stdin, 0, 0);
19159 return fseeko (stdin, 0, 0) && fp (stdin, 0, 0);
19160 ; 18684 ;
19161 return 0; 18685 return 0;
19162} 18686}
@@ -24428,6 +23952,7 @@ echo " Does Emacs use a gif library? ${HAVE_GIF} $ac_
24428echo " Does Emacs use -lpng? ${HAVE_PNG}" 23952echo " Does Emacs use -lpng? ${HAVE_PNG}"
24429echo " Does Emacs use -lrsvg-2? ${HAVE_RSVG}" 23953echo " Does Emacs use -lrsvg-2? ${HAVE_RSVG}"
24430echo " Does Emacs use -lgpm? ${HAVE_GPM}" 23954echo " Does Emacs use -lgpm? ${HAVE_GPM}"
23955echo " Does Emacs use -ldbus? ${HAVE_DBUS}"
24431echo " Does Emacs use X toolkit scroll bars? ${USE_TOOLKIT_SCROLL_BARS}" 23956echo " Does Emacs use X toolkit scroll bars? ${USE_TOOLKIT_SCROLL_BARS}"
24432echo 23957echo
24433 23958