~diwic/dpkg/original-maintainer

« back to all changes in this revision

Viewing changes to lib/compat/Makefile.am

  • Committer: James Westby
  • Author(s): Raphael Hertzog
  • Date: 2009-12-07 09:24:31 UTC
  • mto: (1.2.2 experimental)
  • mto: This revision was merged to the branch mainline in revision 71.
  • Revision ID: james.westby@canonical.com-20091207092431-julffpexyz8z8d26
* Fix Dpkg::Index::get() and remove(). Thanks to Roderich Schupp
  <roderich.schupp@googlemail.com> for the patch. Closes: #558595
* Modify implementation of "3.0 (quilt)" source format to not be
  behave differently depending on whether quilt is installed or not.
  The option --without-quilt is thus gone and dpkg-source creates
  and relies on the .pc directory to know whether patches are applied
  or not. Closes: #557667
* Add new dpkg-source option --single-debian-patch supported by the source
  format "3.0 (quilt)" so that it behaves more like 1.0 and its single diff
  that is constantly updated with all upstream changes. Useful if the
  workflow is VCS based and can't generate a full patch set.
* dpkg-source now uses debian/source/patch-header as header of the automatic
  Debian patch in format "3.0 (quilt)".
* Fix Debian changelog parser so that the trailer line is again checked.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
## Process this file with automake to produce Makefile.in
2
2
 
3
3
AM_CPPFLAGS = \
4
 
        -idirafter $(top_srcdir)/lib/compat
 
4
        -idirafter $(top_srcdir)/lib/compat \
 
5
        -I$(top_builddir)
5
6
 
6
7
 
7
8
noinst_LIBRARIES = libcompat.a
8
9
 
9
10
libcompat_a_SOURCES = \
 
11
        empty.c \
10
12
        compat.h \
11
13
        gettext.h
12
14
 
34
36
libcompat_a_SOURCES += strsignal.c
35
37
endif
36
38
 
37
 
if !HAVE_SNPRINTF
38
 
libcompat_a_SOURCES += snprintf.c
39
 
endif
40
 
 
41
 
if !HAVE_VSNPRINTF
42
 
libcompat_a_SOURCES += vsnprintf.c
 
39
if !HAVE_C99_SNPRINTF
 
40
libcompat_a_SOURCES += snprintf.c vsnprintf.c
43
41
endif
44
42
 
45
43
if !HAVE_ALPHASORT