blob: 185bdbb6a33299ed50d954a5ce2844293721dad2 (
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
$NetBSD: patch-aa,v 1.2 2004/05/13 12:07:49 he Exp $
--- configure.orig 1998-11-03 16:16:50.000000000 +0100
+++ configure
@@ -1059,7 +1059,11 @@ fi
fi
fi
+
+if [ x"$TARGET" = x ]
+then
TARGET="scotty tkined"
+fi
#--------------------------------------------------------------------
# Check for various system specific things.
@@ -1480,9 +1484,8 @@ echo "configure:1472: checking for tkCon
done
if test "$found" -eq 0 ; then
- { echo "configure: error: "tkConfig.sh not found - use the --with-tk-config option"" 1>&2; exit 1; }
-fi
-
+ { echo "configure: error: tkConfig.sh not found" 1>&2; }
+else
. $tnm_cv_path_tk_config/tkConfig.sh
TK_INCLUDES=-I$TK_PREFIX/include
if test "$TK_INCLUDES" = "$TCL_INCLUDES" ; then
@@ -1499,6 +1502,8 @@ if test 4 -eq $TK_MAJOR_VERSION -a 1 -gt
{ echo "configure: error: "tk 4.1 or later needed"" 1>&2; exit 1; }
fi
+fi
+
#----------------------------------------------------------------------------
# Check for the existence of various libraries.
#----------------------------------------------------------------------------
@@ -2443,6 +2448,8 @@ fi
fi
+LIBS="$LIBS $TCL_LIBS"
+
echo $ac_n "checking for getmntent""... $ac_c" 1>&6
echo "configure:2448: checking for getmntent" >&5
if eval "test \"`echo '$''{'ac_cv_func_getmntent'+set}'`\" = set"; then
|