aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--configure.in20
1 files changed, 17 insertions, 3 deletions
diff --git a/configure.in b/configure.in
index 12c364c3805..7ca502c7be8 100644
--- a/configure.in
+++ b/configure.in
@@ -343,11 +343,17 @@ case "${canonical}" in
343 [56].[0-9] ) machine=nh4000 opsys=cxux ;; 343 [56].[0-9] ) machine=nh4000 opsys=cxux ;;
344 [7].[0-9] ) machine=nh4000 opsys=cxux7 ;; 344 [7].[0-9] ) machine=nh4000 opsys=cxux7 ;;
345 esac 345 esac
346 NON_GNU_CPP="/lib/cpp"
346 ;; 347 ;;
347 ## Harris ecx or gcx running CX/UX (Series 1200, Series 3000) 348 ## Harris ecx or gcx running CX/UX (Series 1200, Series 3000)
348 m68k-harris-cxux* ) 349 m68k-harris-cxux* )
349 machine=nh3000 opsys=cxux 350 machine=nh3000 opsys=cxux
350 ;; 351 ;;
352 ## Harris power pc NightHawk running Power UNIX (Series 6000)
353 powerpc-harris-powerunix )
354 machine=nh6000 opsys=powerunix
355 NON_GNU_CPP="cc -Xo -E -P"
356 ;;
351 357
352 ## Honeywell XPS100 358 ## Honeywell XPS100
353 xps*-honeywell-sysv* ) 359 xps*-honeywell-sysv* )
@@ -670,7 +676,14 @@ case "${canonical}" in
670 opsys=sunos4shr 676 opsys=sunos4shr
671 NON_GNU_CPP=/usr/lib/cpp 677 NON_GNU_CPP=/usr/lib/cpp
672 ;; 678 ;;
673 *-sunos4* | *-sunos ) opsys=sunos4-1 679 *-sunos4.1.[3-9]*-noshare )
680 opsys=sunos4-1-3
681 NON_GNU_CPP=/usr/lib/cpp
682 NON_GCC_TEST_OPTIONS=-Bstatic
683 GCC_TEST_OPTIONS=-static
684 ;;
685 *-sunos4* | *-sunos )
686 opsys=sunos4-1
674 NON_GCC_TEST_OPTIONS=-Bstatic 687 NON_GCC_TEST_OPTIONS=-Bstatic
675 GCC_TEST_OPTIONS=-static 688 GCC_TEST_OPTIONS=-static
676 ;; 689 ;;
@@ -689,7 +702,7 @@ case "${canonical}" in
689 RANLIB="ar -ts" 702 RANLIB="ar -ts"
690 ;; 703 ;;
691 *-sunos5* | *-solaris* ) 704 *-sunos5* | *-solaris* )
692 opsys=sol2 705 opsys=sol2-4
693 NON_GNU_CPP=/usr/ccs/lib/cpp 706 NON_GNU_CPP=/usr/ccs/lib/cpp
694 ;; 707 ;;
695 * ) opsys=bsd4-2 ;; 708 * ) opsys=bsd4-2 ;;
@@ -1239,6 +1252,7 @@ if test "${HAVE_X11}" = "yes"; then
1239 1252
1240 AC_CHECK_FUNCS(XrmSetDatabase XScreenResourceString \ 1253 AC_CHECK_FUNCS(XrmSetDatabase XScreenResourceString \
1241XScreenNumberOfScreen XSetWMProtocols) 1254XScreenNumberOfScreen XSetWMProtocols)
1255 AC_CHECK_LIB(Xmu, XmuConvertStandardSelection)
1242fi 1256fi
1243 1257
1244if test "${USE_X_TOOLKIT}" != "none"; then 1258if test "${USE_X_TOOLKIT}" != "none"; then
@@ -1299,7 +1313,7 @@ if test $emacs_cv_localtime_cache = yes; then
1299 AC_DEFINE(LOCALTIME_CACHE) 1313 AC_DEFINE(LOCALTIME_CACHE)
1300fi 1314fi
1301 1315
1302if test $HAVE_TIMEVAL = yes; then 1316if test "x$HAVE_TIMEVAL" = xyes; then
1303AC_MSG_CHECKING(whether gettimeofday can't accept two arguments) 1317AC_MSG_CHECKING(whether gettimeofday can't accept two arguments)
1304AC_TRY_LINK([ 1318AC_TRY_LINK([
1305#ifdef TIME_WITH_SYS_TIME 1319#ifdef TIME_WITH_SYS_TIME