~ubuntu-branches/ubuntu/raring/dansguardian/raring

« back to all changes in this revision

Viewing changes to configs/Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Alexander Wirt, Thomas Viehmann
  • Date: 2008-10-13 09:29:35 UTC
  • mfrom: (1.1.7 upstream) (7.1.1 squeeze)
  • Revision ID: james.westby@ubuntu.com-20081013092935-g8uz3kgfjs37ikgv
Tags: 2.9.9.7-2
[ Thomas Viehmann ]
OptionContainer.cpp: If you need to iterate through all lines in the
config file to find a field, at least don't abuse the configfile deque
by accessing it as if it was an array with signed index.
Works way better on arm, too, i.e. closes: #493047.

Show diffs side-by-side

added added

removed removed

Lines of Context:
67
67
CC = @CC@
68
68
CCDEPMODE = @CCDEPMODE@
69
69
CFLAGS = @CFLAGS@
70
 
CLAMAV = @CLAMAV@
71
70
CLAMAVSHM = @CLAMAVSHM@
72
71
CLAMAVSUPPORT = @CLAMAVSUPPORT@
 
72
CLAMAV_CFLAGS = @CLAMAV_CFLAGS@
 
73
CLAMAV_LIBS = @CLAMAV_LIBS@
73
74
CLAMDSUPPORT = @CLAMDSUPPORT@
74
75
COMMANDLINESUPPORT = @COMMANDLINESUPPORT@
75
76
CPP = @CPP@
122
123
PACKAGE_TARNAME = @PACKAGE_TARNAME@
123
124
PACKAGE_VERSION = @PACKAGE_VERSION@
124
125
PATH_SEPARATOR = @PATH_SEPARATOR@
125
 
PCRE = @PCRE@
 
126
PCRE_CFLAGS = @PCRE_CFLAGS@
 
127
PCRE_LIBS = @PCRE_LIBS@
 
128
PKG_CONFIG = @PKG_CONFIG@
126
129
SET_MAKE = @SET_MAKE@
127
130
SHELL = @SHELL@
128
131
STRIP = @STRIP@
178
181
                       dansguardian.conf dansguardianf1.conf
179
182
 
180
183
SUBDIRS = lists downloadmanagers authplugins . $(am__append_1)
181
 
DATATOPDIR = $(sysconfdir)/$(PACKAGE_NAME)
182
184
FLISTS = dansguardian.conf dansguardianf1.conf
183
185
EXTRA_DIST = dansguardian.conf.in dansguardianf1.conf.in
184
186
all: all-recursive
494
496
 
495
497
 
496
498
install-data-local: 
497
 
        $(mkinstalldirs) $(DESTDIR)$(DATATOPDIR) && \
 
499
        $(mkinstalldirs) $(DESTDIR)$(DGCONFDIR) && \
498
500
        for l in $(FLISTS) ; do \
499
 
                echo "$(INSTALL_DATA) $$l $(DESTDIR)$(DATATOPDIR)/$$l"; \
500
 
                $(INSTALL_DATA) $$l $(DESTDIR)$(DATATOPDIR)/$$l; \
 
501
                echo "$(INSTALL_DATA) $$l $(DESTDIR)$(DGCONFDIR)/$$l"; \
 
502
                $(INSTALL_DATA) $$l $(DESTDIR)$(DGCONFDIR)/$$l; \
501
503
        done
502
504
 
503
505
uninstall-local:
504
506
        for l in $(FLISTS) ; do \
505
 
                rm -f $(DESTDIR)$(DATATOPDIR)/$$l ; \
 
507
                rm -f $(DESTDIR)$(DGCONFDIR)/$$l ; \
506
508
        done
507
509
# Tell versions [3.59,3.63) of GNU make to not export all variables.
508
510
# Otherwise a system limit (for SysV at least) may be exceeded.