--------------------- PatchSet 5698 Date: 2003/04/13 15:12:25 Author: serassio Branch: nt-2_5 Tag: (none) Log: Added missing MinGW support Members: helpers/basic_auth/NCSA/Makefile.am:1.2.8.2->1.2.8.3 helpers/ntlm_auth/fakeauth/Makefile.am:1.2.8.1->1.2.8.2 Index: squid/helpers/basic_auth/NCSA/Makefile.am =================================================================== RCS file: /cvsroot/squid-sf//squid/helpers/basic_auth/NCSA/Makefile.am,v retrieving revision 1.2.8.2 retrieving revision 1.2.8.3 diff -u -r1.2.8.2 -r1.2.8.3 --- squid/helpers/basic_auth/NCSA/Makefile.am 12 Aug 2002 19:21:20 -0000 1.2.8.2 +++ squid/helpers/basic_auth/NCSA/Makefile.am 13 Apr 2003 15:12:25 -0000 1.2.8.3 @@ -1,12 +1,19 @@ # # Makefile for the Squid Object Cache server # -# $Id: Makefile.am,v 1.2.8.2 2002/08/12 19:21:20 serassio Exp $ +# $Id: Makefile.am,v 1.2.8.3 2003/04/13 15:12:25 serassio Exp $ # # Uncomment and customize the following to suit your needs: # -libexec_PROGRAMS = ncsa_auth -ncsa_auth_SOURCES = ncsa_auth.c -LDADD = -L$(top_builddir)/lib -lmiscutil $(CRYPTLIB) $(XTRA_LIBS) -INCLUDES = -I$(top_srcdir)/include +libexec_PROGRAMS = ncsa_auth +if ENABLE_MINGW32SPECIFIC +INCLUDES = -I$(top_srcdir)/port/win32/include -I$(top_builddir)/include \ + -I$(top_srcdir)/include +ENCRYPTSRC = $(top_srcdir)/port/win32/src/encrypt.c +else +INCLUDES = -I$(top_builddir)/include -I$(top_srcdir)/include +ENCRYPTSRC = +endif +ncsa_auth_SOURCES = ncsa_auth.c $(ENCRYPTSRC) +LDADD = -L$(top_builddir)/lib -lmiscutil $(CRYPTLIB) $(XTRA_LIBS) Index: squid/helpers/ntlm_auth/fakeauth/Makefile.am =================================================================== RCS file: /cvsroot/squid-sf//squid/helpers/ntlm_auth/fakeauth/Makefile.am,v retrieving revision 1.2.8.1 retrieving revision 1.2.8.2 diff -u -r1.2.8.1 -r1.2.8.2 --- squid/helpers/ntlm_auth/fakeauth/Makefile.am 29 Jun 2002 11:06:00 -0000 1.2.8.1 +++ squid/helpers/ntlm_auth/fakeauth/Makefile.am 13 Apr 2003 15:12:25 -0000 1.2.8.2 @@ -1,13 +1,18 @@ # # Makefile for the Squid Object Cache server # -# $Id: Makefile.am,v 1.2.8.1 2002/06/29 11:06:00 serassio Exp $ +# $Id: Makefile.am,v 1.2.8.2 2003/04/13 15:12:25 serassio Exp $ # # Uncomment and customize the following to suit your needs: # libexec_PROGRAMS = fakeauth_auth fakeauth_auth_SOURCES = fakeauth_auth.c ntlm.h +if ENABLE_MINGW32SPECIFIC +INCLUDES = -I. -I$(top_srcdir)/port/win32/include -I$(top_builddir)/include \ + -I$(top_srcdir)/include -I$(top_srcdir)/src +else INCLUDES = -I. -I$(top_builddir)/include -I$(top_srcdir)/include \ -I$(top_srcdir)/src/ +endif LDADD = -L$(top_builddir)/lib -lmiscutil $(CRYPTLIB) $(XTRA_LIBS)