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
33
34
35
36
|
$NetBSD: patch-at,v 1.5 2005/03/24 11:32:50 adam Exp $
--- configure.orig 2005-01-24 15:22:46.000000000 +0000
+++ configure
@@ -573,6 +573,7 @@ case "$host" in
i[3456]86-*-solaris*) arch=i386; system=solaris;;
i[3456]86-*-beos*) arch=i386; system=beos;;
i[3456]86-*-cygwin*) arch=i386; system=cygwin;;
+ i[3456]86-*-interix3*) arch=i386; system=interix3;;
mips-*-irix6*) arch=mips; system=irix;;
hppa1.1-*-hpux*) arch=hppa; system=hpux;;
hppa2.0*-*-hpux*) arch=hppa; system=hpux;;
@@ -657,6 +658,7 @@ case "$arch,$model,$system" in
profiling='prof'
case "$nativecc" in gcc*) ;; *) cc_profile='-xpg';; esac;;
amd64,*,linux) profiling='prof';;
+ power,*,bsd) profiling='prof';;
*) profiling='noprof';;
esac
@@ -1123,6 +1125,7 @@ fi
x11_include="not found"
x11_link="not found"
+if test "$disable_x11" != "yes"; then
for dir in \
$x11_include_dir \
\
@@ -1169,6 +1172,7 @@ do
break
fi
done
+fi
if test "$x11_include" = "not found"; then
x11_try_lib_dir=''
|