diff options
author | Marcin Juszkiewicz <hrw@openedhand.com> | 2008-03-14 09:32:02 +0000 |
---|---|---|
committer | Marcin Juszkiewicz <hrw@openedhand.com> | 2008-03-14 09:32:02 +0000 |
commit | 11ca8a4dd9e0882bdfeeebc81518245ab27f6cb9 (patch) | |
tree | 2c43a875b018092bf08b60afe713e495dfae67c5 /meta/packages/libgpg-error/libgpg-error-1.6 | |
parent | d0de533a99e83c194a98d0c523d2787e5e26de5d (diff) | |
download | poky-11ca8a4dd9e0882bdfeeebc81518245ab27f6cb9.tar.gz |
libgpg-error: upgraded to 1.6
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@3991 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/packages/libgpg-error/libgpg-error-1.6')
-rw-r--r-- | meta/packages/libgpg-error/libgpg-error-1.6/pkgconfig.patch | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/meta/packages/libgpg-error/libgpg-error-1.6/pkgconfig.patch b/meta/packages/libgpg-error/libgpg-error-1.6/pkgconfig.patch new file mode 100644 index 0000000000..f367f1ccc2 --- /dev/null +++ b/meta/packages/libgpg-error/libgpg-error-1.6/pkgconfig.patch | |||
@@ -0,0 +1,54 @@ | |||
1 | |||
2 | # | ||
3 | # Patch managed by http://www.mn-logistik.de/unsupported/pxa250/patcher | ||
4 | # | ||
5 | |||
6 | Index: libgpg-error-1.3/configure.ac | ||
7 | =================================================================== | ||
8 | --- libgpg-error-1.3.orig/configure.ac | ||
9 | +++ libgpg-error-1.3/configure.ac | ||
10 | @@ -117,6 +117,7 @@ GPG_ERROR_CONFIG_CFLAGS="" | ||
11 | AC_SUBST(GPG_ERROR_CONFIG_LIBS) | ||
12 | AC_SUBST(GPG_ERROR_CONFIG_CFLAGS) | ||
13 | AC_CONFIG_FILES([src/gpg-error-config], [chmod +x src/gpg-error-config]) | ||
14 | +AC_CONFIG_FILES([src/gpg-error.pc]) | ||
15 | |||
16 | |||
17 | # Special defines for certain platforms | ||
18 | Index: libgpg-error-1.3/src/Makefile.am | ||
19 | =================================================================== | ||
20 | --- libgpg-error-1.3.orig/src/Makefile.am | ||
21 | +++ libgpg-error-1.3/src/Makefile.am | ||
22 | @@ -28,6 +28,8 @@ include_HEADERS = gpg-error.h | ||
23 | bin_SCRIPTS = gpg-error-config | ||
24 | m4datadir = $(datadir)/aclocal | ||
25 | m4data_DATA = gpg-error.m4 | ||
26 | +pkgconfigdir = $(libdir)/pkgconfig | ||
27 | +pkgconfig_DATA = gpg-error.pc | ||
28 | |||
29 | |||
30 | EXTRA_DIST = mkstrtable.awk err-sources.h.in err-codes.h.in \ | ||
31 | @@ -35,7 +37,7 @@ EXTRA_DIST = mkstrtable.awk err-sources. | ||
32 | mkerrcodes.awk mkerrcodes1.awk mkerrcodes2.awk mkerrcodes.c \ | ||
33 | mkheader.awk gpg-error.h.in \ | ||
34 | err-sources.h err-codes.h gpg-error-config.in gpg-error.m4 \ | ||
35 | - gpg-error.def versioninfo.rc.in | ||
36 | + gpg-error.def versioninfo.rc.in gpg-error.pc.in | ||
37 | |||
38 | BUILT_SOURCES = err-sources.h err-codes.h code-to-errno.h code-from-errno.h \ | ||
39 | err-sources-sym.h err-codes-sym.h errnos-sym.h gpg-error.h | ||
40 | Index: libgpg-error-1.3/src/gpg-error.pc.in | ||
41 | =================================================================== | ||
42 | --- /dev/null | ||
43 | +++ libgpg-error-1.3/src/gpg-error.pc.in | ||
44 | @@ -0,0 +1,10 @@ | ||
45 | +prefix=@prefix@ | ||
46 | +exec_prefix=@exec_prefix@ | ||
47 | +libdir=@libdir@ | ||
48 | +includedir=@includedir@ | ||
49 | + | ||
50 | +Name: gpg-error | ||
51 | +Description: a library that defines common error values for all GnuPG components | ||
52 | +Version: @VERSION@ | ||
53 | +Libs: -L{libdir} -lgpg-error | ||
54 | +Cflags: -I${includedir} | ||