blob: e3943fa19582a2aff9eb17798ca627a9a5c74a30 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
$NetBSD: patch-ab,v 1.3 2001/09/12 21:09:04 jlam Exp $
--- configure.orig Fri Mar 31 15:07:21 2000
+++ configure
@@ -1257,6 +1257,9 @@
if test $unameS = "FreeBSD" ; then
ARCH=freebsd
fi
+ if test $unameS = "NetBSD" ; then
+ ARCH=netbsd
+ fi
if test `echo $unameS | tr A-Z a-z | sed "s/^.*cygwin.*$/yes/"` = "yes" ; then
ARCH=cygwin
fi
@@ -1269,9 +1272,6 @@
if test $unameS = "AIX" ; then
ARCH=ibm6000
fi
- if test $unameM = "alpha" ; then
- ARCH=alphax
- fi
if test $unameS = "HP-UX" ; then
ARCH=hp700
fi
@@ -3719,6 +3719,7 @@
ac_cv_have_x="have_x=yes \
ac_x_includes=$x_includes ac_x_libraries=$x_libraries"
echo "$ac_t""libraries $x_libraries, headers $x_includes" 1>&6
+ eval "$ac_cv_have_x"
fi
if test "$x_includes" != "" ; then
|