aboutsummaryrefslogtreecommitdiff
path: root/databases/postgresql82-server/files/patch-au
blob: 340521b494823fc6c840a2ebd6f97e8b6f241887 (plain) (blame)
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
47
48
49
50
51
52
53
54
55
56
57
58
--- configure.in.orig	Sun Nov  5 05:03:47 2000
+++ configure.in	Mon Dec  4 02:36:15 2000
@@ -299,13 +299,28 @@
    [  --with-tcl              build Tcl interfaces and pgtclsh ],
    [
 	case "$withval" in
-	y | ye | yes)		USE_TCL=true; USE_TK=true; AC_MSG_RESULT(enabled) ;;
+	y | ye | yes)		USE_TCL=true; AC_MSG_RESULT(enabled) ;;
 	*)			USE_TCL=; USE_TK=; AC_MSG_RESULT(disabled) ;;
 	esac
    ],
    [ USE_TCL=; USE_TK=; AC_MSG_RESULT(disabled) ]
 )
 
+dnl We include tk support with tcl unless user says --without-tk
+if test USE_TCL = true
+then
+AC_MSG_CHECKING(setting USE_TK)
+AC_ARG_WITH(
+   tk,
+   [  --without-tk              build Tcl *without* Tk ],
+   [
+	case "$withval" in
+	y | ye | yes)		USE_TK=true; USE_TK=true; AC_MSG_RESULT(enabled) ;;
+	*)			USE_TK=n; AC_MSG_RESULT(disabled) ;;
+	esac
+   ]
+)
+fi
 export USE_TCL
 export USE_TK
 
@@ -482,7 +497,7 @@
 #endif
 ],
 	ELF_SYS=true,
-[if test "X$elf" = "Xyes"
+[if test "X$PORTOBJFORMAT" = "Xyes"
 then
 	ELF_SYS=true
 else
@@ -1248,10 +1263,15 @@
 	else
 		AC_MSG_RESULT($TCL_CONFIG_SH)
 		AC_SUBST(TCL_CONFIG_SH)
+		. ${TCL_CONFIG_SH}
+		AC_SUBST(TCL_LIB_SPEC)
 	fi
 fi
 
-USE_TK=$USE_TCL		# If TCL is disabled, disable TK
+USE_TK=${USE_TK:=$USE_TCL}	# If TCL is disabled, disable TK
+				# otherwise -- enable unless explicitly
+				# disabled
+
 
 dnl Check for Tk configuration script tkConfig.sh
 if test "$USE_TK" = true