~clint-fewbar/ubuntu/precise/squid3/ignore-sighup-early

« back to all changes in this revision

Viewing changes to compat/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Luigi Gangitano
  • Date: 2009-09-24 14:51:06 UTC
  • mfrom: (1.1.12 upstream)
  • mto: (20.2.1 sid)
  • mto: This revision was merged to the branch mainline in revision 21.
  • Revision ID: james.westby@ubuntu.com-20090924145106-38jgrzmj0d73pha5
Tags: 3.1.0.13-1
* Upload to experimental

* New upstream release
  - Fixes Follow-X-Forwarded-For support (Closes: #523943)
  - Adds IPv6 support (Closes: #432351)

* debian/rules
  - Removed obsolete configuration options
  - Enable db and radius basic authentication modules

* debian/patches/01-cf.data.debian
  - Adapted to new upstream version

* debian/patches/02-makefile-defaults
  - Adapted to new upstream version

* debian/{squid.postinst,squid.rc,README.Debian,watch}
  - Updated references to squid 3.1

* debian/squid3.install
  - Install CSS file for error pages
  - Install manual pages for new authentication modules

* debian/squid3-common.install
  - Install documented version of configuration file in /usr/share/doc/squid3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
#  Makefile for the Squid Portability Library
 
3
#
 
4
 
 
5
include $(top_srcdir)/src/Common.am
 
6
 
 
7
 
 
8
# Ideally this would be 100% inline functions and macro wrappers.
 
9
 
 
10
# Port Specific Configurations
 
11
 
 
12
noinst_LTLIBRARIES = libcompat.la
 
13
 
 
14
libcompat_la_SOURCES = \
 
15
        assert.h \
 
16
        compat.h \
 
17
        compat_shared.h \
 
18
        fdsetsize.h \
 
19
        osdetect.h \
 
20
        stdvarargs.h \
 
21
        valgrind.h \
 
22
        \
 
23
        os/aix.h \
 
24
        os/dragonfly.h \
 
25
        os/freebsd.h \
 
26
        os/hpux.h \
 
27
        os/linux.h \
 
28
        os/mswin.h \
 
29
        os/next.h \
 
30
        os/openbsd.h \
 
31
        os/os2.h \
 
32
        os/qnx.h \
 
33
        os/sgi.h \
 
34
        os/solaris.h \
 
35
        os/sunos.h \
 
36
        os/windows.h \
 
37
        \
 
38
        assert.cc \
 
39
        compat.cc \
 
40
        GnuRegex.h \
 
41
        GnuRegex.c
 
42
 
 
43
 
 
44
# os/ subdir prevents us using src/TestHeaders.am
 
45
#
 
46
TESTS += testHeaders
 
47
 
 
48
## Special Universal .h dependency test script
 
49
## aborts if error encountered
 
50
testHeaders: $(srcdir)/*.h $(srcdir)/os/*.h
 
51
        $(SHELL) $(top_srcdir)/test-suite/testheaders.sh "$(CXXCOMPILE)" "$(srcdir)" || exit 1
 
52
        $(SHELL) $(top_srcdir)/test-suite/testheaders.sh "$(CXXCOMPILE)" "$(srcdir)/os" || exit 1
 
53
 
 
54
CLEANFILES += testHeaders
 
55
 
 
56
.PHONY: testHeaders