summaryrefslogtreecommitdiff
blob: 18d2ea036748a43a5fac52d92ab71a737fb3cd4d (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
diff -ur nufw-2.0.3~/configure nufw-2.0.3/configure
--- nufw-2.0.3~/configure	2006-06-28 01:34:15.000000000 +0200
+++ nufw-2.0.3/configure	2006-06-28 01:39:09.000000000 +0200
@@ -20041,59 +20041,59 @@
 # Check whether --with-prelude-log or --without-prelude-log was given.
 if test "${with_prelude_log+set}" = set; then
   withval="$with_prelude_log"
-  enable_prelude_log="yes"
+  enable_prelude_log=$withval
 else
-  enable_prelude_log=""
+  enable_prelude_log="no"
 fi;
 
 # Check whether --with-mysql-log or --without-mysql-log was given.
 if test "${with_mysql_log+set}" = set; then
   withval="$with_mysql_log"
-  enable_mysql_log="yes"
+  enable_mysql_log=$withval
 else
-  enable_mysql_log=""
+  enable_mysql_log="no"
 fi;
 
 # Check whether --with-pgsql-log or --without-pgsql-log was given.
 if test "${with_pgsql_log+set}" = set; then
   withval="$with_pgsql_log"
-  enable_pgsql_log="yes"
+  enable_pgsql_log=$withval
 else
-  enable_pgsql_log=""
+  enable_pgsql_log="no"
 fi;
 
 
 # Check whether --with-system-auth or --without-system-auth was given.
 if test "${with_system_auth+set}" = set; then
   withval="$with_system_auth"
-  enable_system_auth="yes"
+  enable_system_auth=$withval
 else
-  enable_system_auth=""
+  enable_system_auth="no"
 fi;
 
 
 # Check whether --with-ldap or --without-ldap was given.
 if test "${with_ldap+set}" = set; then
   withval="$with_ldap"
-  ldap="yes"
+  ldap=$withval
 else
-  ldap=""
+  ldap="no"
 fi;
 
 # Check whether --with-gdbm or --without-gdbm was given.
 if test "${with_gdbm+set}" = set; then
   withval="$with_gdbm"
-  gdbm="yes"
+  gdbm=$withval
 else
-  gdbm=""
+  gdbm="no"
 fi;
 
 # Check whether --with-ident or --without-ident was given.
 if test "${with_ident+set}" = set; then
   withval="$with_ident"
-  ident="yes"
+  ident=$withval
 else
-  ident=""
+  ident="no"
 fi;
 
 
@@ -20101,9 +20101,9 @@
 # Check whether --with-nfqueue or --without-nfqueue was given.
 if test "${with_nfqueue+set}" = set; then
   withval="$with_nfqueue"
-  use_nfqueue="yes"
+  use_nfqueue=$withval
 else
-  use_nfqueue=""
+  use_nfqueue="no"
 fi;
 
 
@@ -20121,7 +20121,7 @@
 # Check whether --with-fixedtimeout or --without-fixedtimeout was given.
 if test "${with_fixedtimeout+set}" = set; then
   withval="$with_fixedtimeout"
-  have_conntrack_fixedtimeout="yes"
+  have_conntrack_fixedtimeout=${withval}
 fi;
 
 
@@ -20130,7 +20130,7 @@
   enableval="$enable_debug"
   debug=$enableval
 else
-  debug=""
+  debug="no"
 fi;
 # Check whether --enable-nufw or --disable-nufw was given.
 if test "${enable_nufw+set}" = set; then