From: wessels <> Date: Thu, 8 Apr 1999 01:48:52 +0000 (+0000) Subject: Added PAM auth module from Henrik X-Git-Tag: SQUID_3_0_PRE1~2302 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bf10b227843c612729e5f9ec499f5e10144c8dd1;p=thirdparty%2Fsquid.git Added PAM auth module from Henrik Added Makefile.in for SMB auth --- diff --git a/configure b/configure index f448020495..8fe7711b48 100755 --- a/configure +++ b/configure @@ -591,7 +591,7 @@ fi -# From configure.in Revision: 1.166 +# From configure.in Revision: 1.167 ac_aux_dir= for ac_dir in cfgaux $srcdir/cfgaux; do if test -f $ac_dir/install-sh; then @@ -4966,6 +4966,8 @@ trap 'rm -fr `echo "\ ./errors/Makefile \ ./auth_modules/dummy \ ./auth_modules/NCSA/Makefile \ + ./auth_modules/PAM/Makefile \ + ./auth_modules/SMB/Makefile include/autoconf.h" | sed "s/:[^ ]*//g"` conftest*; exit 1' 1 2 15 EOF cat >> $CONFIG_STATUS <> $CONFIG_STATUS <<\EOF diff --git a/configure.in b/configure.in index a0684c844c..76a3271a1b 100644 --- a/configure.in +++ b/configure.in @@ -3,13 +3,13 @@ dnl Configuration input file for Squid dnl dnl Duane Wessels, wessels@nlanr.net, February 1996 (autoconf v2.9) dnl -dnl $Id: configure.in,v 1.167 1999/01/29 23:47:06 wessels Exp $ +dnl $Id: configure.in,v 1.168 1999/04/07 19:48:53 wessels Exp $ dnl dnl dnl AC_INIT(src/main.c) AC_CONFIG_HEADER(include/autoconf.h) -AC_REVISION($Revision: 1.167 $)dnl +AC_REVISION($Revision: 1.168 $)dnl AC_PREFIX_DEFAULT(/usr/local/squid) AC_CONFIG_AUX_DIR(cfgaux) @@ -1377,4 +1377,6 @@ AC_OUTPUT(\ ./errors/Makefile \ ./auth_modules/dummy \ ./auth_modules/NCSA/Makefile \ + ./auth_modules/PAM/Makefile \ + ./auth_modules/SMB/Makefile ) diff --git a/icons/Makefile.in b/icons/Makefile.in index 5d7ec18409..55d9324819 100644 --- a/icons/Makefile.in +++ b/icons/Makefile.in @@ -1,4 +1,4 @@ -# $Id: Makefile.in,v 1.6 1998/02/02 19:39:25 wessels Exp $ +# $Id: Makefile.in,v 1.7 1999/04/07 19:48:56 wessels Exp $ # prefix = @prefix@ exec_prefix = @exec_prefix@ @@ -46,7 +46,9 @@ ICONS = anthony-binhex.gif \ anthony-xbm.gif \ anthony-xpm.gif -all: anthony-xpm.gif +all: + +unshar: anthony-xpm.gif anthony-xpm.gif: $(SHARFILE) $(SH) $(SHARFILE) diff --git a/lib/Makefile.in b/lib/Makefile.in index 8f58b5f921..49c9b4a7c3 100644 --- a/lib/Makefile.in +++ b/lib/Makefile.in @@ -1,5 +1,5 @@ # -# $Id: Makefile.in,v 1.40 1998/08/17 23:01:24 wessels Exp $ +# $Id: Makefile.in,v 1.41 1999/04/07 19:48:57 wessels Exp $ # prefix = @prefix@ top_srcdir = @top_srcdir@ @@ -40,7 +40,8 @@ UTILOBJS = rfc1123.o \ $(LIBOBJS) REGEXOBJS = GNUregex.o DLMALLOCOBJS = dlmalloc.o -LIBS = libmiscutil.a @LIBREGEX@ @LIBDLMALLOC@ +GREOBJS = libgre.o +LIBS = libmiscutil.a libgre.a @LIBREGEX@ @LIBDLMALLOC@ CFLAGS = $(AC_CFLAGS) $(INCLUDE) @@ -63,6 +64,11 @@ libdlmalloc.a: $(DLMALLOCOBJS) $(AR_R) $@ $(DLMALLOCOBJS) $(RANLIB) $@ +libgre.a: $(GREOBJS) + $(RM) -f $@ + $(AR_R) $@ $(GREOBJS) + $(RANLIB) $@ + clean: -rm -f *.o $(LIBS) core