comparison configure.in @ 1155:2e45c3beb9dc

[xemacs-hg @ 2002-12-12 03:22:50 by stephent] pdump for Linux <873cp37wik.fsf@tleepslib.sk.tsukuba.ac.jp>
author stephent
date Thu, 12 Dec 2002 03:22:50 +0000
parents 37bdd24225ef
children 6041a741b6d6
comparison
equal deleted inserted replaced
1154:3136b3c99ceb 1155:2e45c3beb9dc
379 dnl the following is set to yes or no later. 379 dnl the following is set to yes or no later.
380 with_toolbars="" 380 with_toolbars=""
381 with_tty="" 381 with_tty=""
382 use_union_type="no" 382 use_union_type="no"
383 with_dnet="" 383 with_dnet=""
384 pdump="no" 384 dnl pdump defaults per opsys
385 pdump=""
385 dnl dragndrop is still experimental, except on Windows. When it is stable, comment out the following line: 386 dnl dragndrop is still experimental, except on Windows. When it is stable, comment out the following line:
386 with_dragndrop_default="no" 387 with_dragndrop_default="no"
387 dnl Too annoying, even if mandated by IPv6 (and I'm not even sure of that) 388 dnl Too annoying, even if mandated by IPv6 (and I'm not even sure of that)
388 dnl #### Change this to yes when somebody understands IPv6 and handle bugs. 389 dnl #### Change this to yes when somebody understands IPv6 and handle bugs.
389 with_ipv6_cname="no" 390 with_ipv6_cname="no"
1238 1239
1239 dnl Darwin, a.k.a. MacOS X (based on Mach and Freebsd) 1240 dnl Darwin, a.k.a. MacOS X (based on Mach and Freebsd)
1240 *-*-darwin*) 1241 *-*-darwin*)
1241 opsys=darwin 1242 opsys=darwin
1242 RANLIB="ranlib -c" dnl Avoids a link error with lwlib-config.c 1243 RANLIB="ranlib -c" dnl Avoids a link error with lwlib-config.c
1243 pdump=yes dnl No "native" working dumper available
1244 ;; 1244 ;;
1245 1245
1246 dnl Data General AViiON Machines 1246 dnl Data General AViiON Machines
1247 i586-dg-dgux*R4* | i586-dg-dgux5.4.4* ) machine=aviion opsys=dgux5-4r4 ;; 1247 i586-dg-dgux*R4* | i586-dg-dgux5.4.4* ) machine=aviion opsys=dgux5-4r4 ;;
1248 m88k-dg-dgux5.4R3* | m88k-dg-dgux5.4.3* ) opsys=dgux5-4r3 ;; 1248 m88k-dg-dgux5.4R3* | m88k-dg-dgux5.4.3* ) opsys=dgux5-4r3 ;;
1593 else 1593 else
1594 echo "XEmacs has no builtin knowledge of \`$opsys' operating systems." 1594 echo "XEmacs has no builtin knowledge of \`$opsys' operating systems."
1595 echo "Using configure-time autodetection only." 1595 echo "Using configure-time autodetection only."
1596 fi 1596 fi
1597 1597
1598 dnl --------------------------------------------------------------
1599 dnl $opsys detection complete; defaults depending on $opsys follow
1600 dnl --------------------------------------------------------------
1601
1602 if test -z "$pdump"; then
1603 case "$opsys" in
1604 linux* ) pdump=yes ;; dnl glibc 2.3.1 seems to hose unexec
1605 *-*-darwin* ) pdump=yes ;; dnl No "native" working dumper available
1606 *) pdump=no ;;
1607 esac
1608 fi
1598 1609
1599 if test -z "$dynamic"; then 1610 if test -z "$dynamic"; then
1600 case "$opsys" in 1611 case "$opsys" in
1601 hpux* | sunos4* ) dynamic=no ;; 1612 hpux* | sunos4* ) dynamic=no ;;
1602 *) dynamic=yes ;; 1613 *) dynamic=yes ;;