~ubuntu-branches/ubuntu/vivid/curl/vivid

« back to all changes in this revision

Viewing changes to include/curl/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Andreas Schuldei
  • Date: 2009-04-02 23:35:45 UTC
  • mfrom: (1.1.12 upstream)
  • mto: (3.3.1 squeeze)
  • mto: This revision was merged to the branch mainline in revision 38.
  • Revision ID: james.westby@ubuntu.com-20090402233545-8xjr3o2sgce5s4bg
Tags: 7.19.4-1
* New upstream release
* Fix "newer bdb version" <explain what you changed and why> 
  (Closes: #517277)
* resolve libtool version confusion, thanks to 
  Stefanos Harhalakis <v13@v13.gr>
* add new dependency on libgcrypt11-dev due to newly arising binary symbols

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
pkginclude_HEADERS = \
2
2
        curl.h curlver.h easy.h mprintf.h stdcheaders.h types.h multi.h \
3
 
        typecheck-gcc.h
 
3
        typecheck-gcc.h curlbuild.h curlrules.h
 
4
 
4
5
pkgincludedir= $(includedir)/curl
5
6
 
6
 
CLEANFILES = *dist
 
7
# curlbuild.h does not exist in the CVS tree. When the original libcurl
 
8
# source code distribution archive file is created, curlbuild.h.dist is
 
9
# renamed to curlbuild.h and included in the tarball so that it can be
 
10
# used directly on non-configure systems.
 
11
#
 
12
# The distributed curlbuild.h will be overwritten on configure systems
 
13
# when the configure script runs, with one that is suitable and specific
 
14
# to the library being configured and built.
 
15
#
 
16
# curlbuild.h.in is the distributed template file from which the configure
 
17
# script creates curlbuild.h at library configuration time, overwiting the
 
18
# one included in the distribution archive.
 
19
#
 
20
# curlbuild.h.dist is not included in the source code distribution archive.
 
21
 
 
22
EXTRA_DIST = curlbuild.h.in
 
23
 
 
24
DISTCLEANFILES = curlbuild.h
 
25