From: Amos Jeffries Date: Thu, 2 May 2013 05:33:16 +0000 (-0600) Subject: Typo in rev.12783 and remove MinGW specific hacks X-Git-Tag: SQUID_3_4_0_1~177 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=52b5eeee534217f0255caa0c090228f7460fe648;p=thirdparty%2Fsquid.git Typo in rev.12783 and remove MinGW specific hacks --- diff --git a/helpers/basic_auth/MSNT/required.m4 b/helpers/basic_auth/MSNT/required.m4 index 2dbd013de5..ab6492871c 100755 --- a/helpers/basic_auth/MSNT/required.m4 +++ b/helpers/basic_auth/MSNT/required.m4 @@ -1,8 +1,5 @@ # # DONT build this helper on Windows # -# XXX: do we really need the mingw check? -if test "$squid_host_os" != "mingw"; then - BUILD_HELPER="MSNT" - AC_CHECK_HEADERS([w32api/windows.h windows.h],[BUILD_HELPER=""]) -fi +BUILD_HELPER="MSNT" +AC_CHECK_HEADERS([w32api/windows.h windows.h],[BUILD_HELPER=""]) diff --git a/helpers/basic_auth/RADIUS/Makefile.am b/helpers/basic_auth/RADIUS/Makefile.am index 067a7e55ee..1133cafd31 100644 --- a/helpers/basic_auth/RADIUS/Makefile.am +++ b/helpers/basic_auth/RADIUS/Makefile.am @@ -5,7 +5,7 @@ INCLUDES += -I$(srcdir) libexec_PROGRAMS = basic_radius_auth man_MANS = basic_radius_auth.8 -EXTRA_DIST = basic_radius_auth.8 required.m3 +EXTRA_DIST = basic_radius_auth.8 required.m4 basic_radius_auth_SOURCES = \ basic_radius_auth.cc \ radius.h \ diff --git a/helpers/basic_auth/SSPI/required.m4 b/helpers/basic_auth/SSPI/required.m4 index 546ca2f4ef..f1ed8ba246 100755 --- a/helpers/basic_auth/SSPI/required.m4 +++ b/helpers/basic_auth/SSPI/required.m4 @@ -1,8 +1,4 @@ # # Only build this helper on Windows # -# FIXME: do we really need the mingw check anymore? -if test "$squid_host_os" = "mingw"; then - BUILD_HELPER="SSPI" -fi AC_CHECK_HEADERS([w32api/windows.h windows.h],[BUILD_HELPER="SSPI"])