--------------------- PatchSet 1954 Date: 2001/04/16 13:26:34 Author: rbcollins Branch: squid-amake Tag: (none) Log: added ssl support Members: src/Makefile.am:1.1.2.20->1.1.2.21 Index: squid/src/Makefile.am =================================================================== RCS file: /cvsroot/squid-sf//squid/src/Makefile.am,v retrieving revision 1.1.2.20 retrieving revision 1.1.2.21 diff -u -r1.1.2.20 -r1.1.2.21 --- squid/src/Makefile.am 16 Apr 2001 13:03:07 -0000 1.1.2.20 +++ squid/src/Makefile.am 16 Apr 2001 13:26:34 -0000 1.1.2.21 @@ -34,6 +34,10 @@ UNLINKD = unlinkd endif +if ENABLE_SSL +SSLSOURCE = ssl_support.c +endif + SUBDIRS = fs repl auth #look into pkgsbin.. libexecdir = ${prefix}/libexec/squid @@ -52,7 +56,7 @@ ##cf_gen_LDADD = ../lib/libmiscutil.a EXTRA_squid_SOURCES = delay_pools.c dns.c dnsserver.c dns_internal.c htcp.c \ -leakfinder.c snmp_core.c snmp_agent.c unlinkd.c +leakfinder.c snmp_core.c snmp_agent.c unlinkd.c ssl_support.c squid_SOURCES = \ access_log.c acl.c asn.c authenticate.c cache_cf.c \ CacheDigest.c cache_manager.c carp.c cbdata.c client_db.c client_side.c \ @@ -64,15 +68,15 @@ ipc.c ipcache.c $(LEAKFINDERSOURCE) logfile.c main.c mem.c MemPool.c MemBuf.c \ mime.c multicast.c neighbors.c net_db.c Packer.c pconn.c peer_digest.c \ peer_select.c protos.h redirect.c referer.c refresh.c send-announce.c $(SNMPSOURCE) \ -squid.h ssl.c stat.c StatHist.c String.c stmem.c store.c store_io.c store_client.c \ -store_digest.c store_dir.c store_key_md5.c store_log.c store_rebuild.c store_swapin.c \ -store_swapmeta.c store_swapout.c structs.h tools.c typedefs.h $(UNLINKDSOURCE) url.c \ -urn.c useragent.c wais.c wccp.c whois.c +squid.h ssl.c $(SSLSOURCE) stat.c StatHist.c String.c stmem.c store.c store_io.c \ +store_client.c store_digest.c store_dir.c store_key_md5.c store_log.c store_rebuild.c \ +store_swapin.c store_swapmeta.c store_swapout.c structs.h tools.c typedefs.h \ +$(UNLINKDSOURCE) url.c urn.c useragent.c wais.c wccp.c whois.c nodist_squid_SOURCES = repl_modules.c auth_modules.c store_modules.c \ cf_parser.h globals.c string_arrays.c squid_LDADD = @XTRA_OBJS@ @REPL_OBJS@ @STORE_OBJS@ @AUTH_OBJS@ \ @CRYPTLIB@ @REGEXLIB@ @SQUID_PTHREAD_LIB@ \ - @SNMPLIB@ @LIB_MALLOC@ ../lib/libmiscutil.a @XTRA_LIBS@ + @SNMPLIB@ @LIB_MALLOC@ @SSLLIB@ ../lib/libmiscutil.a @XTRA_LIBS@ unlinkd_SOURCES = unlinkd_LDADD = unlinkd-daemon.o