~ubuntu-branches/ubuntu/trusty/dovecot/trusty-proposed

« back to all changes in this revision

Viewing changes to pigeonhole/doc/example-config/Makefile.in

  • Committer: Package Import Robot
  • Author(s): James Page, James Page, Ante Karamatic
  • Date: 2013-02-11 12:41:24 UTC
  • mfrom: (4.1.33 sid)
  • Revision ID: package-import@ubuntu.com-20130211124124-v7bdegzftlhw7yfr
Tags: 1:2.1.7-7ubuntu1
[ James Page ]
* Merge from Debian unstable (LP: #1117613, #1075456), remaining changes:
  + Add mail-stack-delivery package:
    - Update d/rules
    - d/control: convert existing dovecot-postfix package to a dummy
      package and add new mail-stack-delivery package.
    - Update maintainer scripts.
    - Rename d/dovecot-postfix.* to debian/mail-stack-delivery.*
    - d/mail-stack-delivery.preinst: Move previously installed backups and
      config files to a new package namespace.
    - d/mail-stack-delivery.prerm: Added to handle downgrades.
  + Use Snakeoil SSL certificates by default:
    - d/control: Depend on ssl-cert.
    - d/dovecot-core.postinst: Relax grep for SSL_* a bit.
  + Add autopkgtest to debian/tests/*.
  + Add ufw integration:
    - d/dovecot-core.ufw.profile: new ufw profile.
    - d/rules: install profile in dovecot-core.
    - d/control: dovecot-core - suggest ufw.
  + d/dovecot-core.dirs: Added usr/share/doc/dovecot-core
  + Add apport hook:
    - d/rules, d/source_dovecot.py
  + Add upstart job:
    - d/rules, d/dovecot-core.dovecot.upstart, d/control,
      d/dovecot-core.dirs, dovecot-imapd.{postrm, postinst, prerm},
      d/dovecot-pop3d.{postinst, postrm, prerm}.
      d/mail-stack-deliver.postinst: Convert init script to upstart.
  + d/control: Added Pre-Depends: dpkg (>= 1.15.6) to dovecot-dbg to support
    xz compression in Ubuntu.
  + d/control: Demote dovecot-common Recommends: to Suggests: to prevent
    install of extra packages on upgrade.
  + d/patches/dovecot-drac.patch: Updated with version for dovecot >= 2.0.0.
* Dropped changes, included in Debian:
  + d/{control,rules}: enable PIE hardening.
  + d/control: Drop B-D on systemd.
* d/p/mail-stack-delivery.postinst: Updated to ensure that configured SSL
  cert and key locations are used when configuring postfix, sorted out
  formatting.
* d/p/dovecot-core.postinst: Create compat links to old style, existing
  SSL cert and key if found.
* d/rules: Don't pass hardening flags for DRAC plugin.
* d/dovecot-{pop3d,imapd}.prerm: Re-sync with Debian.
* d/dovecot-core.lintian-overrides: Drop override for DRAC plugin as not
  required in Ubuntu.
* d/01-mail-stack-delivery: Renamed 99-mail-stack-delivery to ensure that
  the mail-stack-delivery configuration overrides configuration options
  set elsewhere, updated with new cert/key file locations.

[ Ante Karamatic ]
* Change configuration file for LDA on new installs and upgrades
  (LP: #671065).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Makefile.in generated by automake 1.10.3 from Makefile.am.
 
1
# Makefile.in generated by automake 1.11.3 from Makefile.am.
2
2
# @configure_input@
3
3
 
4
4
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
5
 
# 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
6
 
# Inc.
 
5
# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
 
6
# Foundation, Inc.
7
7
# This Makefile.in is free software; the Free Software Foundation
8
8
# gives unlimited permission to copy and/or distribute it,
9
9
# with or without modifications, as long as this notice is preserved.
16
16
@SET_MAKE@
17
17
VPATH = @srcdir@
18
18
pkgdatadir = $(datadir)/@PACKAGE@
 
19
pkgincludedir = $(includedir)/@PACKAGE@
19
20
pkglibdir = $(libdir)/@PACKAGE@
20
 
pkgincludedir = $(includedir)/@PACKAGE@
 
21
pkglibexecdir = $(libexecdir)/@PACKAGE@
21
22
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
22
23
install_sh_DATA = $(install_sh) -c -m 644
23
24
install_sh_PROGRAM = $(install_sh) -c
45
46
CONFIG_HEADER = $(top_builddir)/dummy-config.h \
46
47
        $(top_builddir)/pigeonhole-config.h
47
48
CONFIG_CLEAN_FILES =
 
49
CONFIG_CLEAN_VPATH_FILES =
48
50
SOURCES =
49
51
DIST_SOURCES =
50
52
RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
56
58
        ps-recursive uninstall-recursive
57
59
RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
58
60
  distclean-recursive maintainer-clean-recursive
 
61
AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \
 
62
        $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \
 
63
        distdir
59
64
ETAGS = etags
60
65
CTAGS = ctags
61
66
DIST_SUBDIRS = $(SUBDIRS)
62
67
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
 
68
am__relativize = \
 
69
  dir0=`pwd`; \
 
70
  sed_first='s,^\([^/]*\)/.*$$,\1,'; \
 
71
  sed_rest='s,^[^/]*/*,,'; \
 
72
  sed_last='s,^.*/\([^/]*\)$$,\1,'; \
 
73
  sed_butlast='s,/*[^/]*$$,,'; \
 
74
  while test -n "$$dir1"; do \
 
75
    first=`echo "$$dir1" | sed -e "$$sed_first"`; \
 
76
    if test "$$first" != "."; then \
 
77
      if test "$$first" = ".."; then \
 
78
        dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \
 
79
        dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \
 
80
      else \
 
81
        first2=`echo "$$dir2" | sed -e "$$sed_first"`; \
 
82
        if test "$$first2" = "$$first"; then \
 
83
          dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \
 
84
        else \
 
85
          dir2="../$$dir2"; \
 
86
        fi; \
 
87
        dir0="$$dir0"/"$$first"; \
 
88
      fi; \
 
89
    fi; \
 
90
    dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
 
91
  done; \
 
92
  reldir="$$dir2"
63
93
ACLOCAL = @ACLOCAL@
64
94
AMTAR = @AMTAR@
65
95
AR = @AR@
76
106
DEFS = @DEFS@
77
107
DEPDIR = @DEPDIR@
78
108
DISTCHECK_CONFIGURE_FLAGS = @DISTCHECK_CONFIGURE_FLAGS@
 
109
DLLTOOL = @DLLTOOL@
79
110
DOVECOT_CFLAGS = @DOVECOT_CFLAGS@
80
111
DOVECOT_LIBS = @DOVECOT_LIBS@
 
112
DOVECOT_SQL_LIBS = @DOVECOT_SQL_LIBS@
81
113
DOVECOT_SSL_LIBS = @DOVECOT_SSL_LIBS@
82
114
DSYMUTIL = @DSYMUTIL@
83
115
DUMPBIN = @DUMPBIN@
119
151
LTLIBOBJS = @LTLIBOBJS@
120
152
MAINT = @MAINT@
121
153
MAKEINFO = @MAKEINFO@
 
154
MANIFEST_TOOL = @MANIFEST_TOOL@
122
155
MKDIR_P = @MKDIR_P@
123
156
NM = @NM@
124
157
NMEDIT = @NMEDIT@
144
177
abs_srcdir = @abs_srcdir@
145
178
abs_top_builddir = @abs_top_builddir@
146
179
abs_top_srcdir = @abs_top_srcdir@
 
180
ac_ct_AR = @ac_ct_AR@
147
181
ac_ct_CC = @ac_ct_CC@
148
182
ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
149
183
am__include = @am__include@
166
200
dovecot_pkgincludedir = @dovecot_pkgincludedir@
167
201
dovecot_pkglibdir = @dovecot_pkglibdir@
168
202
dovecot_pkglibexecdir = @dovecot_pkglibexecdir@
 
203
dovecotdir = @dovecotdir@
169
204
dvidir = @dvidir@
170
205
exec_prefix = @exec_prefix@
171
206
host = @host@
181
216
libexecdir = @libexecdir@
182
217
localedir = @localedir@
183
218
localstatedir = @localstatedir@
184
 
lt_ECHO = @lt_ECHO@
185
219
mandir = @mandir@
186
220
mkdir_p = @mkdir_p@
187
221
moduledir = @moduledir@
212
246
              exit 1;; \
213
247
          esac; \
214
248
        done; \
215
 
        echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign  doc/example-config/Makefile'; \
216
 
        cd $(top_srcdir) && \
217
 
          $(AUTOMAKE) --foreign  doc/example-config/Makefile
 
249
        echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign doc/example-config/Makefile'; \
 
250
        $(am__cd) $(top_srcdir) && \
 
251
          $(AUTOMAKE) --foreign doc/example-config/Makefile
218
252
.PRECIOUS: Makefile
219
253
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
220
254
        @case '$?' in \
232
266
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
233
267
$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
234
268
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
269
$(am__aclocal_m4_deps):
235
270
 
236
271
mostlyclean-libtool:
237
272
        -rm -f *.lo
263
298
          else \
264
299
            local_target="$$target"; \
265
300
          fi; \
266
 
          (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
 
301
          ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
267
302
          || eval $$failcom; \
268
303
        done; \
269
304
        if test "$$dot_seen" = "no"; then \
297
332
          else \
298
333
            local_target="$$target"; \
299
334
          fi; \
300
 
          (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
 
335
          ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
301
336
          || eval $$failcom; \
302
337
        done && test -z "$$fail"
303
338
tags-recursive:
304
339
        list='$(SUBDIRS)'; for subdir in $$list; do \
305
 
          test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
 
340
          test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
306
341
        done
307
342
ctags-recursive:
308
343
        list='$(SUBDIRS)'; for subdir in $$list; do \
309
 
          test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
 
344
          test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
310
345
        done
311
346
 
312
347
ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
321
356
 
322
357
TAGS: tags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
323
358
                $(TAGS_FILES) $(LISP)
324
 
        tags=; \
 
359
        set x; \
325
360
        here=`pwd`; \
326
361
        if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
327
362
          include_option=--etags-include; \
333
368
        list='$(SUBDIRS)'; for subdir in $$list; do \
334
369
          if test "$$subdir" = .; then :; else \
335
370
            test ! -f $$subdir/TAGS || \
336
 
              tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \
 
371
              set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
337
372
          fi; \
338
373
        done; \
339
374
        list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
342
377
          done | \
343
378
          $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
344
379
              END { if (nonempty) { for (i in files) print i; }; }'`; \
345
 
        if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
 
380
        shift; \
 
381
        if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
346
382
          test -n "$$unique" || unique=$$empty_fix; \
347
 
          $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
348
 
            $$tags $$unique; \
 
383
          if test $$# -gt 0; then \
 
384
            $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
 
385
              "$$@" $$unique; \
 
386
          else \
 
387
            $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
 
388
              $$unique; \
 
389
          fi; \
349
390
        fi
350
391
ctags: CTAGS
351
392
CTAGS: ctags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
352
393
                $(TAGS_FILES) $(LISP)
353
 
        tags=; \
354
394
        list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
355
395
        unique=`for i in $$list; do \
356
396
            if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
357
397
          done | \
358
398
          $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
359
399
              END { if (nonempty) { for (i in files) print i; }; }'`; \
360
 
        test -z "$(CTAGS_ARGS)$$tags$$unique" \
 
400
        test -z "$(CTAGS_ARGS)$$unique" \
361
401
          || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
362
 
             $$tags $$unique
 
402
             $$unique
363
403
 
364
404
GTAGS:
365
405
        here=`$(am__cd) $(top_builddir) && pwd` \
366
 
          && cd $(top_srcdir) \
367
 
          && gtags -i $(GTAGS_ARGS) $$here
 
406
          && $(am__cd) $(top_srcdir) \
 
407
          && gtags -i $(GTAGS_ARGS) "$$here"
368
408
 
369
409
distclean-tags:
370
410
        -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
385
425
          if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
386
426
          if test -d $$d/$$file; then \
387
427
            dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
 
428
            if test -d "$(distdir)/$$file"; then \
 
429
              find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
 
430
            fi; \
388
431
            if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
389
 
              cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
 
432
              cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
 
433
              find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
390
434
            fi; \
391
 
            cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
 
435
            cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
392
436
          else \
393
 
            test -f $(distdir)/$$file \
394
 
            || cp -p $$d/$$file $(distdir)/$$file \
 
437
            test -f "$(distdir)/$$file" \
 
438
            || cp -p $$d/$$file "$(distdir)/$$file" \
395
439
            || exit 1; \
396
440
          fi; \
397
441
        done
398
 
        list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
 
442
        @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
399
443
          if test "$$subdir" = .; then :; else \
400
444
            test -d "$(distdir)/$$subdir" \
401
445
            || $(MKDIR_P) "$(distdir)/$$subdir" \
402
446
            || exit 1; \
403
 
            distdir=`$(am__cd) $(distdir) && pwd`; \
404
 
            top_distdir=`$(am__cd) $(top_distdir) && pwd`; \
405
 
            (cd $$subdir && \
 
447
          fi; \
 
448
        done
 
449
        @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
 
450
          if test "$$subdir" = .; then :; else \
 
451
            dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
 
452
            $(am__relativize); \
 
453
            new_distdir=$$reldir; \
 
454
            dir1=$$subdir; dir2="$(top_distdir)"; \
 
455
            $(am__relativize); \
 
456
            new_top_distdir=$$reldir; \
 
457
            echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \
 
458
            echo "     am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \
 
459
            ($(am__cd) $$subdir && \
406
460
              $(MAKE) $(AM_MAKEFLAGS) \
407
 
                top_distdir="$$top_distdir" \
408
 
                distdir="$$distdir/$$subdir" \
 
461
                top_distdir="$$new_top_distdir" \
 
462
                distdir="$$new_distdir" \
409
463
                am__remove_distdir=: \
410
464
                am__skip_length_check=: \
 
465
                am__skip_mode_fix=: \
411
466
                distdir) \
412
467
              || exit 1; \
413
468
          fi; \
427
482
 
428
483
installcheck: installcheck-recursive
429
484
install-strip:
430
 
        $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
431
 
          install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
432
 
          `test -z '$(STRIP)' || \
433
 
            echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
 
485
        if test -z '$(STRIP)'; then \
 
486
          $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
 
487
            install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
 
488
              install; \
 
489
        else \
 
490
          $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
 
491
            install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
 
492
            "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
 
493
        fi
434
494
mostlyclean-generic:
435
495
 
436
496
clean-generic:
437
497
 
438
498
distclean-generic:
439
499
        -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
 
500
        -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
440
501
 
441
502
maintainer-clean-generic:
442
503
        @echo "This command is intended for maintainers to use"
507
568
 
508
569
uninstall-am:
509
570
 
510
 
.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) install-am \
511
 
        install-strip
 
571
.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) ctags-recursive \
 
572
        install-am install-strip tags-recursive
512
573
 
513
574
.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \
514
575
        all all-am check check-am clean clean-generic clean-libtool \
524
585
        mostlyclean-libtool pdf pdf-am ps ps-am tags tags-recursive \
525
586
        uninstall uninstall-am
526
587
 
 
588
 
527
589
# Tell versions [3.59,3.63) of GNU make to not export all variables.
528
590
# Otherwise a system limit (for SysV at least) may be exceeded.
529
591
.NOEXPORT: