]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
bootstrapped
authorrobertc <>
Wed, 12 Mar 2003 05:13:12 +0000 (05:13 +0000)
committerrobertc <>
Wed, 12 Mar 2003 05:13:12 +0000 (05:13 +0000)
41 files changed:
Makefile.in
configure
contrib/Makefile.in
doc/Makefile.in
errors/Makefile.in
helpers/Makefile.in
helpers/basic_auth/LDAP/Makefile.in
helpers/basic_auth/MSNT/Makefile.in
helpers/basic_auth/Makefile.in
helpers/basic_auth/NCSA/Makefile.in
helpers/basic_auth/PAM/Makefile.in
helpers/basic_auth/SASL/Makefile.in
helpers/basic_auth/SMB/Makefile.in
helpers/basic_auth/YP/Makefile.in
helpers/basic_auth/getpwnam/Makefile.in
helpers/basic_auth/multi-domain-NTLM/Makefile.in
helpers/basic_auth/winbind/Makefile.in
helpers/digest_auth/Makefile.in
helpers/digest_auth/password/Makefile.in
helpers/external_acl/Makefile.in
helpers/external_acl/ip_user/Makefile.in
helpers/external_acl/ldap_group/Makefile.in
helpers/external_acl/unix_group/Makefile.in
helpers/external_acl/wbinfo_group/Makefile.in
helpers/external_acl/winbind_group/Makefile.in
helpers/ntlm_auth/Makefile.in
helpers/ntlm_auth/SMB/Makefile.in
helpers/ntlm_auth/SMB/smbval/Makefile.in
helpers/ntlm_auth/fakeauth/Makefile.in
helpers/ntlm_auth/no_check/Makefile.in
helpers/ntlm_auth/winbind/Makefile.in
icons/Makefile.in
lib/Makefile.in
lib/libTrie/Makefile.in
scripts/Makefile.in
snmplib/Makefile.in
src/Makefile.in
src/auth/Makefile.in
src/fs/Makefile.in
src/repl/Makefile.in
test-suite/Makefile.in

index a5e91ebce3034c5da7807563a389522989b7d032..a943e4185835895143d64070200b14a49489c762 100644 (file)
@@ -14,7 +14,7 @@
 @SET_MAKE@
 
 #
-# $Id: Makefile.in,v 1.52 2003/03/04 01:45:26 robertc Exp $
+# $Id: Makefile.in,v 1.53 2003/03/11 22:13:12 robertc Exp $
 #
 
 SHELL = @SHELL@
@@ -105,6 +105,8 @@ RM = @RM@
 SAMBASOURCES = @SAMBASOURCES@
 SH = @SH@
 SNMPLIB = @SNMPLIB@
+SQUID_CFLAGS = @SQUID_CFLAGS@
+SQUID_CXXFLAGS = @SQUID_CXXFLAGS@
 SSLLIB = @SSLLIB@
 STORE_LIBS = @STORE_LIBS@
 STORE_MODULES = @STORE_MODULES@
index 0b3e734b322a8abfec4030192a4d36f96276b758..9036f7d09d4a1969216f83015d0abb131949299e 100755 (executable)
--- a/configure
+++ b/configure
@@ -1,5 +1,5 @@
 #! /bin/sh
-# From configure.in Revision: 1.328 .
+# From configure.in Revision: 1.329 .
 # Guess values for system-dependent variables and create Makefiles.
 # Generated by GNU Autoconf 2.53.
 #
@@ -3947,6 +3947,16 @@ if test -z "$PRESET_CFLAGS"; then
     fi
 fi
 
+if test "$GCC" = "yes"; then
+  SQUID_CFLAGS="-Werror -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments"
+  SQUID_CXXFLAGS="$SQUID_CFLAGS"
+else
+  SQUID_CFLAGS=
+  SQUID_CXXFLAGS=
+fi
+
+
+
 if test -z "$PRESET_LDFLAGS"; then
     if test "$GCC" = "yes"; then
         case "$host" in
@@ -16697,6 +16707,8 @@ s,@host_os@,$host_os,;t t
 s,@CGIEXT@,$CGIEXT,;t t
 s,@ENABLE_WIN32SPECIFIC_TRUE@,$ENABLE_WIN32SPECIFIC_TRUE,;t t
 s,@ENABLE_WIN32SPECIFIC_FALSE@,$ENABLE_WIN32SPECIFIC_FALSE,;t t
+s,@SQUID_CFLAGS@,$SQUID_CFLAGS,;t t
+s,@SQUID_CXXFLAGS@,$SQUID_CXXFLAGS,;t t
 s,@LIBDLMALLOC@,$LIBDLMALLOC,;t t
 s,@LIB_MALLOC@,$LIB_MALLOC,;t t
 s,@STORE_OBJS@,$STORE_OBJS,;t t
index 5e1be1ff4f5b02c3b716758e3ba5a47fffc7b800..91f9425a82408ab840f437b6733f9a45b1935074 100644 (file)
@@ -106,6 +106,8 @@ RM = @RM@
 SAMBASOURCES = @SAMBASOURCES@
 SH = @SH@
 SNMPLIB = @SNMPLIB@
+SQUID_CFLAGS = @SQUID_CFLAGS@
+SQUID_CXXFLAGS = @SQUID_CXXFLAGS@
 SSLLIB = @SSLLIB@
 STORE_LIBS = @STORE_LIBS@
 STORE_MODULES = @STORE_MODULES@
index c4672b1ad91bc28348a5425e3a3ef7cc8eb86c1e..d63dd2258020a1ca0f9fb59527149e5ec3fec48d 100644 (file)
@@ -16,7 +16,7 @@
 #
 #  Makefile for the Squid Object Cache server
 #
-#  $Id: Makefile.in,v 1.33 2003/03/04 01:45:32 robertc Exp $
+#  $Id: Makefile.in,v 1.34 2003/03/11 22:13:16 robertc Exp $
 #
 #  Uncomment and customize the following to suit your needs:
 #
@@ -109,6 +109,8 @@ RM = @RM@
 SAMBASOURCES = @SAMBASOURCES@
 SH = @SH@
 SNMPLIB = @SNMPLIB@
+SQUID_CFLAGS = @SQUID_CFLAGS@
+SQUID_CXXFLAGS = @SQUID_CXXFLAGS@
 SSLLIB = @SSLLIB@
 STORE_LIBS = @STORE_LIBS@
 STORE_MODULES = @STORE_MODULES@
index a6facca0a067bd5efbaf0eb6341184a87f2e4329..384bbfe3a32e0ffc405c7015a0872d3e1919185e 100644 (file)
@@ -14,7 +14,7 @@
 @SET_MAKE@
 
 #
-# $Id: Makefile.in,v 1.49 2003/03/04 01:45:32 robertc Exp $
+# $Id: Makefile.in,v 1.50 2003/03/11 22:13:17 robertc Exp $
 #
 
 SHELL = @SHELL@
@@ -105,6 +105,8 @@ RM = @RM@
 SAMBASOURCES = @SAMBASOURCES@
 SH = @SH@
 SNMPLIB = @SNMPLIB@
+SQUID_CFLAGS = @SQUID_CFLAGS@
+SQUID_CXXFLAGS = @SQUID_CXXFLAGS@
 SSLLIB = @SSLLIB@
 STORE_LIBS = @STORE_LIBS@
 STORE_MODULES = @STORE_MODULES@
index 14ff8fd076842ef7101bdb048fda75a22f3dd142..59bbde1c5af63c5c368e4c8da68c67561830f98a 100644 (file)
@@ -101,6 +101,8 @@ RM = @RM@
 SAMBASOURCES = @SAMBASOURCES@
 SH = @SH@
 SNMPLIB = @SNMPLIB@
+SQUID_CFLAGS = @SQUID_CFLAGS@
+SQUID_CXXFLAGS = @SQUID_CXXFLAGS@
 SSLLIB = @SSLLIB@
 STORE_LIBS = @STORE_LIBS@
 STORE_MODULES = @STORE_MODULES@
index 2ef250beaca5306646861e283a9a76dbde8f7873..db51016850838fddedc2897559c3bb38b474a71f 100644 (file)
@@ -16,7 +16,7 @@
 #
 #  Makefile for the Squid LDAP authentication helper
 #
-#  $Id: Makefile.in,v 1.42 2003/03/04 01:45:38 robertc Exp $
+#  $Id: Makefile.in,v 1.43 2003/03/11 22:13:23 robertc Exp $
 #
 #  Uncomment and customize the following to suit your needs:
 #
@@ -109,6 +109,8 @@ RM = @RM@
 SAMBASOURCES = @SAMBASOURCES@
 SH = @SH@
 SNMPLIB = @SNMPLIB@
+SQUID_CFLAGS = @SQUID_CFLAGS@
+SQUID_CXXFLAGS = @SQUID_CXXFLAGS@
 SSLLIB = @SSLLIB@
 STORE_LIBS = @STORE_LIBS@
 STORE_MODULES = @STORE_MODULES@
index 933931bb7213c5aa45806dc120bc3a2823541354..155bb935ffb8e57d5e0d6e8665f83643b77a3baf 100644 (file)
@@ -16,7 +16,7 @@
 #
 #  Makefile for the Squid Object Cache server
 #
-#  $Id: Makefile.in,v 1.45 2003/03/04 01:45:39 robertc Exp $
+#  $Id: Makefile.in,v 1.46 2003/03/11 22:13:23 robertc Exp $
 #
 #  Uncomment and customize the following to suit your needs:
 #
@@ -109,6 +109,8 @@ RM = @RM@
 SAMBASOURCES = @SAMBASOURCES@
 SH = @SH@
 SNMPLIB = @SNMPLIB@
+SQUID_CFLAGS = @SQUID_CFLAGS@
+SQUID_CXXFLAGS = @SQUID_CXXFLAGS@
 SSLLIB = @SSLLIB@
 STORE_LIBS = @STORE_LIBS@
 STORE_MODULES = @STORE_MODULES@
index d046eea011a301608884720688f51ec10381c124..854dbb8ff55651f5d2b92adf76f78aa2690139c4 100644 (file)
@@ -15,7 +15,7 @@
 
 #  Makefile for storage modules in the Squid Object Cache server
 #
-#  $Id: Makefile.in,v 1.40 2003/03/04 01:45:33 robertc Exp $
+#  $Id: Makefile.in,v 1.41 2003/03/11 22:13:19 robertc Exp $
 #
 
 SHELL = @SHELL@
@@ -106,6 +106,8 @@ RM = @RM@
 SAMBASOURCES = @SAMBASOURCES@
 SH = @SH@
 SNMPLIB = @SNMPLIB@
+SQUID_CFLAGS = @SQUID_CFLAGS@
+SQUID_CXXFLAGS = @SQUID_CXXFLAGS@
 SSLLIB = @SSLLIB@
 STORE_LIBS = @STORE_LIBS@
 STORE_MODULES = @STORE_MODULES@
index 7158536f7929081bb244959771dbf10f551ba4f2..42bcb12243b36499535e176dbf7ace72df97699c 100644 (file)
@@ -16,7 +16,7 @@
 #
 #  Makefile for the Squid Object Cache server
 #
-#  $Id: Makefile.in,v 1.40 2003/03/04 01:45:39 robertc Exp $
+#  $Id: Makefile.in,v 1.41 2003/03/11 22:13:26 robertc Exp $
 #
 #  Uncomment and customize the following to suit your needs:
 #
@@ -109,6 +109,8 @@ RM = @RM@
 SAMBASOURCES = @SAMBASOURCES@
 SH = @SH@
 SNMPLIB = @SNMPLIB@
+SQUID_CFLAGS = @SQUID_CFLAGS@
+SQUID_CXXFLAGS = @SQUID_CXXFLAGS@
 SSLLIB = @SSLLIB@
 STORE_LIBS = @STORE_LIBS@
 STORE_MODULES = @STORE_MODULES@
index 55004a713baf590fa512b9f483e5cb3a4663d164..ba5df32308b70fbbeedc8c84f9facf7eb8d294bc 100644 (file)
@@ -16,7 +16,7 @@
 #
 #  Makefile for the Squid PAM authentication helper
 #
-#  $Id: Makefile.in,v 1.41 2003/03/04 01:45:40 robertc Exp $
+#  $Id: Makefile.in,v 1.42 2003/03/11 22:13:26 robertc Exp $
 #
 #  Uncomment and customize the following to suit your needs:
 #
@@ -109,6 +109,8 @@ RM = @RM@
 SAMBASOURCES = @SAMBASOURCES@
 SH = @SH@
 SNMPLIB = @SNMPLIB@
+SQUID_CFLAGS = @SQUID_CFLAGS@
+SQUID_CXXFLAGS = @SQUID_CXXFLAGS@
 SSLLIB = @SSLLIB@
 STORE_LIBS = @STORE_LIBS@
 STORE_MODULES = @STORE_MODULES@
index b0794cf05a13c65848de22abda69367581e97fc0..4461f761fe82db1b492516252396658d00b4bfb0 100644 (file)
@@ -16,7 +16,7 @@
 #
 #  Makefile for the Squid SASL authentication helper
 #
-#  $Id: Makefile.in,v 1.38 2003/03/04 01:45:40 robertc Exp $
+#  $Id: Makefile.in,v 1.39 2003/03/11 22:13:28 robertc Exp $
 #
 #  Uncomment and customize the following to suit your needs:
 #
@@ -109,6 +109,8 @@ RM = @RM@
 SAMBASOURCES = @SAMBASOURCES@
 SH = @SH@
 SNMPLIB = @SNMPLIB@
+SQUID_CFLAGS = @SQUID_CFLAGS@
+SQUID_CXXFLAGS = @SQUID_CXXFLAGS@
 SSLLIB = @SSLLIB@
 STORE_LIBS = @STORE_LIBS@
 STORE_MODULES = @STORE_MODULES@
index e2502c781cc6d033293e82afb7926364c91f630e..ce477da1f23b2e839fb85e26f0d2993bdfd10058 100644 (file)
@@ -16,7 +16,7 @@
 #
 #  Makefile for the Squid Object Cache server
 #
-#  $Id: Makefile.in,v 1.41 2003/03/04 01:45:41 robertc Exp $
+#  $Id: Makefile.in,v 1.42 2003/03/11 22:13:28 robertc Exp $
 #
 #  Uncomment and customize the following to suit your needs:
 #
@@ -114,6 +114,8 @@ RM = @RM@
 SAMBASOURCES = @SAMBASOURCES@
 SH = @SH@
 SNMPLIB = @SNMPLIB@
+SQUID_CFLAGS = @SQUID_CFLAGS@
+SQUID_CXXFLAGS = @SQUID_CXXFLAGS@
 SSLLIB = @SSLLIB@
 STORE_LIBS = @STORE_LIBS@
 STORE_MODULES = @STORE_MODULES@
index 9afc1f5a11da1d15c6e8fc40bbfde021a4d16c6c..51164c8f121e559c51b7f9c16b2461d79b372959 100644 (file)
@@ -16,7 +16,7 @@
 #
 #  Makefile for the Squid Object Cache server
 #
-#  $Id: Makefile.in,v 1.42 2003/03/04 01:45:43 robertc Exp $
+#  $Id: Makefile.in,v 1.43 2003/03/11 22:13:28 robertc Exp $
 #
 #
 
@@ -108,6 +108,8 @@ RM = @RM@
 SAMBASOURCES = @SAMBASOURCES@
 SH = @SH@
 SNMPLIB = @SNMPLIB@
+SQUID_CFLAGS = @SQUID_CFLAGS@
+SQUID_CXXFLAGS = @SQUID_CXXFLAGS@
 SSLLIB = @SSLLIB@
 STORE_LIBS = @STORE_LIBS@
 STORE_MODULES = @STORE_MODULES@
index 332226da3340c72b3bf0f4cfc5b270f30ef544a6..6c9fb161e3cc5d4ee36d76b64213fedaec8d31c0 100644 (file)
@@ -16,7 +16,7 @@
 #
 #  Makefile for the Squid Object Cache server
 #
-#  $Id: Makefile.in,v 1.40 2003/03/04 01:45:44 robertc Exp $
+#  $Id: Makefile.in,v 1.41 2003/03/11 22:13:28 robertc Exp $
 #
 #  Uncomment and customize the following to suit your needs:
 #
@@ -109,6 +109,8 @@ RM = @RM@
 SAMBASOURCES = @SAMBASOURCES@
 SH = @SH@
 SNMPLIB = @SNMPLIB@
+SQUID_CFLAGS = @SQUID_CFLAGS@
+SQUID_CXXFLAGS = @SQUID_CXXFLAGS@
 SSLLIB = @SSLLIB@
 STORE_LIBS = @STORE_LIBS@
 STORE_MODULES = @STORE_MODULES@
index 1110e8651c67a5e1f7ecd66f8df6afd6262c068b..cec798dd0d804a536fd3ce5b8595124135db01fe 100644 (file)
@@ -16,7 +16,7 @@
 #
 #  Makefile for the Squid Object Cache server
 #
-#  $Id: Makefile.in,v 1.38 2003/03/04 01:45:45 robertc Exp $
+#  $Id: Makefile.in,v 1.39 2003/03/11 22:13:30 robertc Exp $
 #
 #  Uncomment and customize the following to suit your needs:
 #
@@ -109,6 +109,8 @@ RM = @RM@
 SAMBASOURCES = @SAMBASOURCES@
 SH = @SH@
 SNMPLIB = @SNMPLIB@
+SQUID_CFLAGS = @SQUID_CFLAGS@
+SQUID_CXXFLAGS = @SQUID_CXXFLAGS@
 SSLLIB = @SSLLIB@
 STORE_LIBS = @STORE_LIBS@
 STORE_MODULES = @STORE_MODULES@
index 73e36a4bdd5f2e9daa0470da639bdf3f8b193cfb..573e24951316ea7fa76b0cd6436efaf2b553bc47 100644 (file)
@@ -16,7 +16,7 @@
 #
 #  Makefile for the Squid Object Cache server
 #
-#  $Id: Makefile.in,v 1.32 2003/03/04 01:45:46 robertc Exp $
+#  $Id: Makefile.in,v 1.33 2003/03/11 22:13:31 robertc Exp $
 #
 
 SHELL = @SHELL@
@@ -107,6 +107,8 @@ RM = @RM@
 SAMBASOURCES = @SAMBASOURCES@
 SH = @SH@
 SNMPLIB = @SNMPLIB@
+SQUID_CFLAGS = @SQUID_CFLAGS@
+SQUID_CXXFLAGS = @SQUID_CXXFLAGS@
 SSLLIB = @SSLLIB@
 STORE_LIBS = @STORE_LIBS@
 STORE_MODULES = @STORE_MODULES@
index d92ef0ba9a6892ed448beefc57ec68be021eb72f..ce8bd27b13f004123fd54157b2eed4b8072249a2 100644 (file)
@@ -15,7 +15,7 @@
 
 #  Makefile for digest auth helpers in the Squid Object Cache server
 #
-#  $Id: Makefile.in,v 1.37 2003/03/04 01:45:48 robertc Exp $
+#  $Id: Makefile.in,v 1.38 2003/03/11 22:13:36 robertc Exp $
 #
 
 SHELL = @SHELL@
@@ -106,6 +106,8 @@ RM = @RM@
 SAMBASOURCES = @SAMBASOURCES@
 SH = @SH@
 SNMPLIB = @SNMPLIB@
+SQUID_CFLAGS = @SQUID_CFLAGS@
+SQUID_CXXFLAGS = @SQUID_CXXFLAGS@
 SSLLIB = @SSLLIB@
 STORE_LIBS = @STORE_LIBS@
 STORE_MODULES = @STORE_MODULES@
index e3c07417f869430bd02e2dc401e4dca9dc287172..29d1e42aa9849211dabf10a1f6383f937109d6b6 100644 (file)
@@ -16,7 +16,7 @@
 #
 #  Makefile for the Squid Object Cache server
 #
-#  $Id: Makefile.in,v 1.39 2003/03/04 01:45:49 robertc Exp $
+#  $Id: Makefile.in,v 1.40 2003/03/11 22:13:37 robertc Exp $
 #
 #  Uncomment and customize the following to suit your needs:
 #
@@ -109,6 +109,8 @@ RM = @RM@
 SAMBASOURCES = @SAMBASOURCES@
 SH = @SH@
 SNMPLIB = @SNMPLIB@
+SQUID_CFLAGS = @SQUID_CFLAGS@
+SQUID_CXXFLAGS = @SQUID_CXXFLAGS@
 SSLLIB = @SSLLIB@
 STORE_LIBS = @STORE_LIBS@
 STORE_MODULES = @STORE_MODULES@
index a596e2f28f6ab30ea7f6fc2c9a956ccc2e147d4d..1d2d90d1d81bbbd8d26dec2091b68c5303b8041a 100644 (file)
@@ -15,7 +15,7 @@
 
 #  Makefile for storage modules in the Squid Object Cache server
 #
-#  $Id: Makefile.in,v 1.27 2003/03/04 01:45:50 robertc Exp $
+#  $Id: Makefile.in,v 1.28 2003/03/11 22:13:40 robertc Exp $
 #
 
 SHELL = @SHELL@
@@ -106,6 +106,8 @@ RM = @RM@
 SAMBASOURCES = @SAMBASOURCES@
 SH = @SH@
 SNMPLIB = @SNMPLIB@
+SQUID_CFLAGS = @SQUID_CFLAGS@
+SQUID_CXXFLAGS = @SQUID_CXXFLAGS@
 SSLLIB = @SSLLIB@
 STORE_LIBS = @STORE_LIBS@
 STORE_MODULES = @STORE_MODULES@
index 3b684c7e5ea714e60e17d0b33d1d3d864390e516..9efccb9407a294cdc7669d77c8c26efc876ce56e 100644 (file)
@@ -16,7 +16,7 @@
 #
 #  Makefile for the ip_user external_acl helper by Rodrigo Campos
 #
-#  $Id: Makefile.in,v 1.27 2003/03/04 01:45:50 robertc Exp $
+#  $Id: Makefile.in,v 1.28 2003/03/11 22:13:42 robertc Exp $
 #
 #  Uncomment and customize the following to suit your needs:
 #
@@ -109,6 +109,8 @@ RM = @RM@
 SAMBASOURCES = @SAMBASOURCES@
 SH = @SH@
 SNMPLIB = @SNMPLIB@
+SQUID_CFLAGS = @SQUID_CFLAGS@
+SQUID_CXXFLAGS = @SQUID_CXXFLAGS@
 SSLLIB = @SSLLIB@
 STORE_LIBS = @STORE_LIBS@
 STORE_MODULES = @STORE_MODULES@
index a5458a7f9fe6cca968bb445601c54e0957e006de..2a1173d3a97656654cd0b2d374717a0d6da213e1 100644 (file)
@@ -16,7 +16,7 @@
 #
 #  Makefile for the Squid LDAP authentication helper
 #
-#  $Id: Makefile.in,v 1.29 2003/03/04 01:45:51 robertc Exp $
+#  $Id: Makefile.in,v 1.30 2003/03/11 22:13:42 robertc Exp $
 #
 #  Uncomment and customize the following to suit your needs:
 #
@@ -109,6 +109,8 @@ RM = @RM@
 SAMBASOURCES = @SAMBASOURCES@
 SH = @SH@
 SNMPLIB = @SNMPLIB@
+SQUID_CFLAGS = @SQUID_CFLAGS@
+SQUID_CXXFLAGS = @SQUID_CXXFLAGS@
 SSLLIB = @SSLLIB@
 STORE_LIBS = @STORE_LIBS@
 STORE_MODULES = @STORE_MODULES@
index 1a9d45fe5f7b63b40ffd76eb1e58ab3c8304833d..55e3ac04e66aa2e958f040492e926c399425f63d 100644 (file)
@@ -16,7 +16,7 @@
 #
 #  Makefile for the Squid LDAP authentication helper
 #
-#  $Id: Makefile.in,v 1.27 2003/03/04 01:45:51 robertc Exp $
+#  $Id: Makefile.in,v 1.28 2003/03/11 22:13:42 robertc Exp $
 #
 #  Uncomment and customize the following to suit your needs:
 #
@@ -109,6 +109,8 @@ RM = @RM@
 SAMBASOURCES = @SAMBASOURCES@
 SH = @SH@
 SNMPLIB = @SNMPLIB@
+SQUID_CFLAGS = @SQUID_CFLAGS@
+SQUID_CXXFLAGS = @SQUID_CXXFLAGS@
 SSLLIB = @SSLLIB@
 STORE_LIBS = @STORE_LIBS@
 STORE_MODULES = @STORE_MODULES@
index eb5117695b0a9cb817163d19f3472acfd715de3c..4bc5396739e8c66ea0329204bdc0e740c20fd8c2 100644 (file)
@@ -16,7 +16,7 @@
 #
 #  Makefile for the Squid LDAP authentication helper
 #
-#  $Id: Makefile.in,v 1.26 2003/03/04 01:45:56 robertc Exp $
+#  $Id: Makefile.in,v 1.27 2003/03/11 22:13:45 robertc Exp $
 #
 #  Uncomment and customize the following to suit your needs:
 #
@@ -109,6 +109,8 @@ RM = @RM@
 SAMBASOURCES = @SAMBASOURCES@
 SH = @SH@
 SNMPLIB = @SNMPLIB@
+SQUID_CFLAGS = @SQUID_CFLAGS@
+SQUID_CXXFLAGS = @SQUID_CXXFLAGS@
 SSLLIB = @SSLLIB@
 STORE_LIBS = @STORE_LIBS@
 STORE_MODULES = @STORE_MODULES@
index 17806f5b902e778bc358bbf0aca5ea6413b4d75f..7f5cdac83628889eda5ee2be71646b6300646c1e 100644 (file)
@@ -16,7 +16,7 @@
 #
 #  Makefile for the wb_group external_acl helper
 #
-#  $Id: Makefile.in,v 1.27 2003/03/04 01:45:58 robertc Exp $
+#  $Id: Makefile.in,v 1.28 2003/03/11 22:13:48 robertc Exp $
 #
 
 SHELL = @SHELL@
@@ -107,6 +107,8 @@ RM = @RM@
 SAMBASOURCES = @SAMBASOURCES@
 SH = @SH@
 SNMPLIB = @SNMPLIB@
+SQUID_CFLAGS = @SQUID_CFLAGS@
+SQUID_CXXFLAGS = @SQUID_CXXFLAGS@
 SSLLIB = @SSLLIB@
 STORE_LIBS = @STORE_LIBS@
 STORE_MODULES = @STORE_MODULES@
index 10c57d5bf605ba2ee666454d6769f77d9390ab3f..ffde3ba053661d8f2cecc55d8c7dd5936bbf1a36 100644 (file)
@@ -15,7 +15,7 @@
 
 #  Makefile for storage modules in the Squid Object Cache server
 #
-#  $Id: Makefile.in,v 1.40 2003/03/04 01:46:00 robertc Exp $
+#  $Id: Makefile.in,v 1.41 2003/03/11 22:13:49 robertc Exp $
 #
 
 SHELL = @SHELL@
@@ -106,6 +106,8 @@ RM = @RM@
 SAMBASOURCES = @SAMBASOURCES@
 SH = @SH@
 SNMPLIB = @SNMPLIB@
+SQUID_CFLAGS = @SQUID_CFLAGS@
+SQUID_CXXFLAGS = @SQUID_CXXFLAGS@
 SSLLIB = @SSLLIB@
 STORE_LIBS = @STORE_LIBS@
 STORE_MODULES = @STORE_MODULES@
index 0fc57cc111bd72a2fdbda707e0d332756d20312b..9959081f563efaf70bc810365a26d90169475fec 100644 (file)
@@ -16,7 +16,7 @@
 #
 #  Makefile for the Squid Object Cache server
 #
-#  $Id: Makefile.in,v 1.40 2003/03/04 01:46:00 robertc Exp $
+#  $Id: Makefile.in,v 1.41 2003/03/11 22:13:52 robertc Exp $
 #
 
 SHELL = @SHELL@
@@ -107,6 +107,8 @@ RM = @RM@
 SAMBASOURCES = @SAMBASOURCES@
 SH = @SH@
 SNMPLIB = @SNMPLIB@
+SQUID_CFLAGS = @SQUID_CFLAGS@
+SQUID_CXXFLAGS = @SQUID_CXXFLAGS@
 SSLLIB = @SSLLIB@
 STORE_LIBS = @STORE_LIBS@
 STORE_MODULES = @STORE_MODULES@
index 600a58dd165f5b559af0e32dff33662557e353fb..fb535c0b4e96892bd94c4fefb6be0ca306849d39 100644 (file)
@@ -103,6 +103,8 @@ RM = @RM@
 SAMBASOURCES = @SAMBASOURCES@
 SH = @SH@
 SNMPLIB = @SNMPLIB@
+SQUID_CFLAGS = @SQUID_CFLAGS@
+SQUID_CXXFLAGS = @SQUID_CXXFLAGS@
 SSLLIB = @SSLLIB@
 STORE_LIBS = @STORE_LIBS@
 STORE_MODULES = @STORE_MODULES@
index 6b6f449bc235e71ae47dd4d48293ca168b2efc34..194d32790e232ae426c9a0675b42de25ff081957 100644 (file)
@@ -16,7 +16,7 @@
 #
 #  Makefile for the Squid Object Cache server
 #
-#  $Id: Makefile.in,v 1.39 2003/03/04 01:46:10 robertc Exp $
+#  $Id: Makefile.in,v 1.40 2003/03/11 22:13:55 robertc Exp $
 #
 #  Uncomment and customize the following to suit your needs:
 #
@@ -109,6 +109,8 @@ RM = @RM@
 SAMBASOURCES = @SAMBASOURCES@
 SH = @SH@
 SNMPLIB = @SNMPLIB@
+SQUID_CFLAGS = @SQUID_CFLAGS@
+SQUID_CXXFLAGS = @SQUID_CXXFLAGS@
 SSLLIB = @SSLLIB@
 STORE_LIBS = @STORE_LIBS@
 STORE_MODULES = @STORE_MODULES@
index 41101b06e7926465ebe028b82a315b22428456ff..98fdbcfb8830241b0dc9c53420ed6726a16be685 100644 (file)
@@ -16,7 +16,7 @@
 #
 #  Makefile for the Squid Object Cache server
 #
-#  $Id: Makefile.in,v 1.41 2003/03/04 01:46:11 robertc Exp $
+#  $Id: Makefile.in,v 1.42 2003/03/11 22:13:58 robertc Exp $
 #
 #  Uncomment and customize the following to suit your needs:
 #
@@ -109,6 +109,8 @@ RM = @RM@
 SAMBASOURCES = @SAMBASOURCES@
 SH = @SH@
 SNMPLIB = @SNMPLIB@
+SQUID_CFLAGS = @SQUID_CFLAGS@
+SQUID_CXXFLAGS = @SQUID_CXXFLAGS@
 SSLLIB = @SSLLIB@
 STORE_LIBS = @STORE_LIBS@
 STORE_MODULES = @STORE_MODULES@
index 059c1159eb528c20d0d2010ddf17639a050d429f..cd2dc5cee32828a02aaf663afe3a003ee332d9fa 100644 (file)
@@ -16,7 +16,7 @@
 #
 #  Makefile for the Squid Object Cache server
 #
-#  $Id: Makefile.in,v 1.32 2003/03/04 01:46:14 robertc Exp $
+#  $Id: Makefile.in,v 1.33 2003/03/11 22:14:00 robertc Exp $
 #
 
 SHELL = @SHELL@
@@ -107,6 +107,8 @@ RM = @RM@
 SAMBASOURCES = @SAMBASOURCES@
 SH = @SH@
 SNMPLIB = @SNMPLIB@
+SQUID_CFLAGS = @SQUID_CFLAGS@
+SQUID_CXXFLAGS = @SQUID_CXXFLAGS@
 SSLLIB = @SSLLIB@
 STORE_LIBS = @STORE_LIBS@
 STORE_MODULES = @STORE_MODULES@
index f42fff531bcc30a1e5321b758140c33cbd8dbf2a..cbc9b894afc3eaeeb433ed3e45b987ce6bce179b 100644 (file)
@@ -13,7 +13,7 @@
 
 @SET_MAKE@
 
-# $Id: Makefile.in,v 1.52 2003/03/04 01:46:16 robertc Exp $
+# $Id: Makefile.in,v 1.53 2003/03/11 22:14:03 robertc Exp $
 #
 
 SHELL = @SHELL@
@@ -104,6 +104,8 @@ RM = @RM@
 SAMBASOURCES = @SAMBASOURCES@
 SH = @SH@
 SNMPLIB = @SNMPLIB@
+SQUID_CFLAGS = @SQUID_CFLAGS@
+SQUID_CXXFLAGS = @SQUID_CXXFLAGS@
 SSLLIB = @SSLLIB@
 STORE_LIBS = @STORE_LIBS@
 STORE_MODULES = @STORE_MODULES@
index 3d8ba73020a5670ff721fd97bc0f911f2870f2d2..b6c68da135b4c2e75ea229ef2f3362592ee0d1ec 100644 (file)
@@ -14,7 +14,7 @@
 @SET_MAKE@
 
 #
-#  $Id: Makefile.in,v 1.89 2003/03/10 05:05:40 robertc Exp $
+#  $Id: Makefile.in,v 1.90 2003/03/11 22:14:08 robertc Exp $
 #
 
 SHELL = @SHELL@
@@ -105,6 +105,8 @@ RM = @RM@
 SAMBASOURCES = @SAMBASOURCES@
 SH = @SH@
 SNMPLIB = @SNMPLIB@
+SQUID_CFLAGS = @SQUID_CFLAGS@
+SQUID_CXXFLAGS = @SQUID_CXXFLAGS@
 SSLLIB = @SSLLIB@
 STORE_LIBS = @STORE_LIBS@
 STORE_MODULES = @STORE_MODULES@
index 6d9cb13f5526be8ba80f22454d5a857054cbf905..403b4fc7abd8d162bb3d65063a5bec25907b7df6 100644 (file)
@@ -14,7 +14,7 @@
 @SET_MAKE@
 
 #
-# $Id: Makefile.in,v 1.2 2003/03/10 05:05:42 robertc Exp $
+# $Id: Makefile.in,v 1.3 2003/03/11 22:14:08 robertc Exp $
 #
 
 SHELL = @SHELL@
index cde856228d225bc15c09c031e2214160a4199cfd..25bfc583287235da856031519788d0ce7a220bf3 100644 (file)
@@ -106,6 +106,8 @@ RM = @RM@
 SAMBASOURCES = @SAMBASOURCES@
 SH = @SH@
 SNMPLIB = @SNMPLIB@
+SQUID_CFLAGS = @SQUID_CFLAGS@
+SQUID_CXXFLAGS = @SQUID_CXXFLAGS@
 SSLLIB = @SSLLIB@
 STORE_LIBS = @STORE_LIBS@
 STORE_MODULES = @STORE_MODULES@
index 2e0b313963ab397fb48f3d29dc126d5a6049ecc4..cdae64aae8e3e60459d4738c7337ef171f369b4f 100644 (file)
@@ -101,6 +101,8 @@ RM = @RM@
 SAMBASOURCES = @SAMBASOURCES@
 SH = @SH@
 SNMPLIB = @SNMPLIB@
+SQUID_CFLAGS = @SQUID_CFLAGS@
+SQUID_CXXFLAGS = @SQUID_CXXFLAGS@
 SSLLIB = @SSLLIB@
 STORE_LIBS = @STORE_LIBS@
 STORE_MODULES = @STORE_MODULES@
index 1b25bcc50c64e0bd615410ca8ecd55e660975860..811074c64835cb507949bf59e7fc6557a627b1aa 100644 (file)
@@ -16,7 +16,7 @@
 #
 #  Makefile for the Squid Object Cache server
 #
-#  $Id: Makefile.in,v 1.298 2003/03/10 05:05:48 robertc Exp $
+#  $Id: Makefile.in,v 1.299 2003/03/11 22:14:12 robertc Exp $
 #
 #  Uncomment and customize the following to suit your needs:
 #
@@ -109,6 +109,8 @@ RM = @RM@
 SAMBASOURCES = @SAMBASOURCES@
 SH = @SH@
 SNMPLIB = @SNMPLIB@
+SQUID_CFLAGS = @SQUID_CFLAGS@
+SQUID_CXXFLAGS = @SQUID_CXXFLAGS@
 SSLLIB = @SSLLIB@
 STORE_LIBS = @STORE_LIBS@
 STORE_MODULES = @STORE_MODULES@
@@ -216,8 +218,8 @@ ESI_ALL_SOURCE = \
 @ENABLE_ARP_ACL_TRUE@ARP_ACL_SOURCE = ACLARP.cc ACLARP.h
 @ENABLE_ARP_ACL_FALSE@ARP_ACL_SOURCE = 
 
-AM_CFLAGS = -Werror -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments
-AM_CXXFLAGS = -Werror -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments
+AM_CFLAGS = @SQUID_CFLAGS@
+AM_CXXFLAGS = @SQUID_CXXFLAGS@
 
 SUBDIRS = fs repl auth
 
index 0f349065fcc22a5f230f5db3c2c149abcb7f13f4..226eda4adafd3b072daefa3727308a050bcb943e 100644 (file)
@@ -15,7 +15,7 @@
 
 #  Makefile for authentication modules in the Squid Object Cache server
 #
-#  $Id: Makefile.in,v 1.39 2003/03/04 01:46:40 robertc Exp $
+#  $Id: Makefile.in,v 1.40 2003/03/11 22:14:20 robertc Exp $
 #
 
 SHELL = @SHELL@
@@ -106,6 +106,8 @@ RM = @RM@
 SAMBASOURCES = @SAMBASOURCES@
 SH = @SH@
 SNMPLIB = @SNMPLIB@
+SQUID_CFLAGS = @SQUID_CFLAGS@
+SQUID_CXXFLAGS = @SQUID_CXXFLAGS@
 SSLLIB = @SSLLIB@
 STORE_LIBS = @STORE_LIBS@
 STORE_MODULES = @STORE_MODULES@
@@ -122,7 +124,8 @@ install_sh = @install_sh@
 makesnmplib = @makesnmplib@
 
 AUTOMAKE_OPTIONS = subdir-objects
-AM_CXXFLAGS = -Werror -Wall
+AM_CFLAGS = @SQUID_CFLAGS@
+AM_CXXFLAGS = @SQUID_CXXFLAGS@
 
 EXTRA_LIBRARIES = libbasic.a libdigest.a libntlm.a
 noinst_LIBRARIES = @AUTH_LIBS@
index b7b1d6afa6591a5aff44b3415c3ea37a3658e132..ad1cdd436e457f31b882600025aa92c1c88e3f27 100644 (file)
@@ -15,7 +15,7 @@
 
 #  Makefile for storage modules in the Squid Object Cache server
 #
-#  $Id: Makefile.in,v 1.42 2003/03/04 01:46:43 robertc Exp $
+#  $Id: Makefile.in,v 1.43 2003/03/11 22:14:22 robertc Exp $
 #
 
 SHELL = @SHELL@
@@ -106,6 +106,8 @@ RM = @RM@
 SAMBASOURCES = @SAMBASOURCES@
 SH = @SH@
 SNMPLIB = @SNMPLIB@
+SQUID_CFLAGS = @SQUID_CFLAGS@
+SQUID_CXXFLAGS = @SQUID_CXXFLAGS@
 SSLLIB = @SSLLIB@
 STORE_LIBS = @STORE_LIBS@
 STORE_MODULES = @STORE_MODULES@
@@ -122,8 +124,8 @@ install_sh = @install_sh@
 makesnmplib = @makesnmplib@
 
 AUTOMAKE_OPTIONS = subdir-objects
-AM_CFLAGS = -Werror -Wall
-AM_CXXFLAGS = -Werror -Wall
+AM_CFLAGS = @SQUID_CFLAGS@
+AM_CXXFLAGS = @SQUID_CXXFLAGS@
 
 DIST_SUBDIRS = aufs coss diskd null ufs
 
index 35d6a9234f47acfcfcd5be199a4a606a6f511313..cfabd46ab10a04815a4176f2fd619a527f72cab2 100644 (file)
@@ -15,7 +15,7 @@
 
 #  Makefile for storage modules in the Squid Object Cache server
 #
-#  $Id: Makefile.in,v 1.39 2003/03/04 01:46:43 robertc Exp $
+#  $Id: Makefile.in,v 1.40 2003/03/11 22:14:25 robertc Exp $
 #
 
 SHELL = @SHELL@
@@ -106,6 +106,8 @@ RM = @RM@
 SAMBASOURCES = @SAMBASOURCES@
 SH = @SH@
 SNMPLIB = @SNMPLIB@
+SQUID_CFLAGS = @SQUID_CFLAGS@
+SQUID_CXXFLAGS = @SQUID_CXXFLAGS@
 SSLLIB = @SSLLIB@
 STORE_LIBS = @STORE_LIBS@
 STORE_MODULES = @STORE_MODULES@
@@ -122,8 +124,8 @@ install_sh = @install_sh@
 makesnmplib = @makesnmplib@
 
 AUTOMAKE_OPTIONS = subdir-objects
-AM_CFLAGS = -Werror -Wall
-AM_CXXFLAGS = -Werror -Wall
+AM_CFLAGS = @SQUID_CFLAGS@
+AM_CXXFLAGS = @SQUID_CXXFLAGS@
 
 
 # No recursion is needed for the subdirs, we build from here. // @REPL_POLICIES@
index 595170e31e642afa06df1a423010435de91fedc9..d215e62c267876e7bf3b96fbb7a49227f90eefa4 100644 (file)
@@ -16,7 +16,7 @@
 #
 #  Makefile for the Squid Object Cache server
 #
-#  $Id: Makefile.in,v 1.26 2003/03/04 01:46:44 robertc Exp $
+#  $Id: Makefile.in,v 1.27 2003/03/11 22:14:25 robertc Exp $
 #
 
 SHELL = @SHELL@
@@ -107,6 +107,8 @@ RM = @RM@
 SAMBASOURCES = @SAMBASOURCES@
 SH = @SH@
 SNMPLIB = @SNMPLIB@
+SQUID_CFLAGS = @SQUID_CFLAGS@
+SQUID_CXXFLAGS = @SQUID_CXXFLAGS@
 SSLLIB = @SSLLIB@
 STORE_LIBS = @STORE_LIBS@
 STORE_MODULES = @STORE_MODULES@