]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Windows: filter the buildable helpers for MinGW
authorAmos Jeffries <squid3@treenet.co.nz>
Sat, 13 Oct 2012 05:39:01 +0000 (23:39 -0600)
committerAmos Jeffries <squid3@treenet.co.nz>
Sat, 13 Oct 2012 05:39:01 +0000 (23:39 -0600)
helpers/basic_auth/MSNT/config.test
helpers/basic_auth/SSPI/config.test
helpers/external_acl/LM_group/config.test
helpers/negotiate_auth/SSPI/config.test
helpers/ntlm_auth/SSPI/config.test
helpers/ntlm_auth/smb_lm/config.test

index eaa986d7cabb9f5e9bb862d36a22a917b2a2ffe0..f75f12e2b2c1794d121cd7ce36e1088665d3bda5 100755 (executable)
@@ -1,5 +1,10 @@
 #!/bin/sh
-# Don't build on Windows
+#
+# Don't build this helper on Windows
+#
+if test "$1" = "mingw"; then
+        exit 1
+fi
 if [ -f /usr/include/w32api/windows.h ]; then
        exit 1
 fi
index 55ae739fbe42c939240b83a3c30934ebbe538b8e..eb7626b6b92006cccca5911655b5d6b4b82f33df 100755 (executable)
@@ -1,4 +1,10 @@
 #!/bin/sh
+#
+# Only build this helper on Windows
+#
+if test "$1" = "mingw"; then
+       exit 0
+fi
 if [ -f /usr/include/w32api/windows.h ]; then
        exit 0
 fi
index 55ae739fbe42c939240b83a3c30934ebbe538b8e..b303426be58e57fa6942a44627ecf9d9a5a5969f 100755 (executable)
@@ -1,4 +1,10 @@
 #!/bin/sh
+#
+# Only build this helper on Windows
+#
+if test "$1" = "mingw"; then
+        exit 0
+fi
 if [ -f /usr/include/w32api/windows.h ]; then
        exit 0
 fi
index 55ae739fbe42c939240b83a3c30934ebbe538b8e..b303426be58e57fa6942a44627ecf9d9a5a5969f 100755 (executable)
@@ -1,4 +1,10 @@
 #!/bin/sh
+#
+# Only build this helper on Windows
+#
+if test "$1" = "mingw"; then
+        exit 0
+fi
 if [ -f /usr/include/w32api/windows.h ]; then
        exit 0
 fi
index 55ae739fbe42c939240b83a3c30934ebbe538b8e..b303426be58e57fa6942a44627ecf9d9a5a5969f 100755 (executable)
@@ -1,4 +1,10 @@
 #!/bin/sh
+#
+# Only build this helper on Windows
+#
+if test "$1" = "mingw"; then
+        exit 0
+fi
 if [ -f /usr/include/w32api/windows.h ]; then
        exit 0
 fi
index eaa986d7cabb9f5e9bb862d36a22a917b2a2ffe0..f75f12e2b2c1794d121cd7ce36e1088665d3bda5 100755 (executable)
@@ -1,5 +1,10 @@
 #!/bin/sh
-# Don't build on Windows
+#
+# Don't build this helper on Windows
+#
+if test "$1" = "mingw"; then
+        exit 1
+fi
 if [ -f /usr/include/w32api/windows.h ]; then
        exit 1
 fi