[Pkg-gnupg-commit] r420 - in /libgpg-error/trunk/debian: changelog patches/pre-built-lock-obj.patch patches/series

dkg at users.alioth.debian.org dkg at users.alioth.debian.org
Mon Aug 4 21:16:03 UTC 2014


Author: dkg
Date: Mon Aug  4 21:16:03 2014
New Revision: 420

URL: http://svn.debian.org/wsvn/pkg-gnupg/?sc=1&rev=420
Log:
include arch-specific lock-obj code

This is another step toward dealing with #753047, as suggested by
Helmut Grohne.

Added:
    libgpg-error/trunk/debian/patches/pre-built-lock-obj.patch
Modified:
    libgpg-error/trunk/debian/changelog
    libgpg-error/trunk/debian/patches/series

Modified: libgpg-error/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-gnupg/libgpg-error/trunk/debian/changelog?rev=420&op=diff
==============================================================================
--- libgpg-error/trunk/debian/changelog	(original)
+++ libgpg-error/trunk/debian/changelog	Mon Aug  4 21:16:03 2014
@@ -1,3 +1,11 @@
+libgpg-error (1.13-0.3) unstable; urgency=medium
+
+  * NMU
+  * include arch-specific lock-obj code as accepted by upstream (another
+    step toward dealing with #753047)
+
+ -- Daniel Kahn Gillmor <dkg at fifthhorseman.net>  Mon, 04 Aug 2014 17:00:45 -0400
+
 libgpg-error (1.13-0.2) unstable; urgency=medium
 
   * NMU

Added: libgpg-error/trunk/debian/patches/pre-built-lock-obj.patch
URL: http://svn.debian.org/wsvn/pkg-gnupg/libgpg-error/trunk/debian/patches/pre-built-lock-obj.patch?rev=420&op=file
==============================================================================
--- libgpg-error/trunk/debian/patches/pre-built-lock-obj.patch	(added)
+++ libgpg-error/trunk/debian/patches/pre-built-lock-obj.patch	Mon Aug  4 21:16:03 2014
@@ -0,0 +1,647 @@
+commit 8338a4ba93367974758dc5e195f67e9d171d4086
+Author: Daniel Kahn Gillmor <dkg at fifthhorseman.net>
+Date:   Fri Jul 25 19:00:42 2014 -0400
+
+    Add new lock-obj-pub.*.h from debian buildds.
+    
+    * src/syscfg/lock-obj-pub.aarch64-unknown-linux-gnu.h: New.
+    * src/syscfg/lock-obj-pub.alpha-unknown-linux-gnu.h: New.
+    * src/syscfg/lock-obj-pub.arm-unknown-linux-gnueabi.h: New.
+    * src/syscfg/lock-obj-pub.arm-unknown-linux-gnueabihf.h: New.
+    * src/syscfg/lock-obj-pub.hppa-unknown-linux-gnu.h: New.
+    * src/syscfg/lock-obj-pub.i486-pc-gnu.h: New.
+    * src/syscfg/lock-obj-pub.i486-pc-kfreebsd-gnu.h: New.
+    * src/syscfg/lock-obj-pub.i486-pc-linux-gnu.h: New.
+    * src/syscfg/lock-obj-pub.m68k-unknown-linux-gnu.h: New.
+    * src/syscfg/lock-obj-pub.mips-unknown-linux-gnu.h: New.
+    * src/syscfg/lock-obj-pub.mipsel-unknown-linux-gnu.h: New.
+    * src/syscfg/lock-obj-pub.powerpc-unknown-linux-gnu.h: New.
+    * src/syscfg/lock-obj-pub.powerpc64-unknown-linux-gnu.h: New.
+    * src/syscfg/lock-obj-pub.s390x-ibm-linux-gnu.h: New.
+    * src/syscfg/lock-obj-pub.sh4-unknown-linux-gnu.h: New.
+    * src/syscfg/lock-obj-pub.sparc-unknown-linux-gnu.h: New.
+    * src/syscfg/lock-obj-pub.x86_64-pc-kfreebsd-gnu.h: New.
+    * src/syscfg/lock-obj-pub.x86_64-pc-linux-gnu.h: New.
+    * src/syscfg/lock-obj-pub.x86_64-pc-linux-gnux32.h: New.
+    * src/Makefile.am (lock_obj_pub): Add new files.
+    --
+    
+    To generate these:
+    
+    pull all the logs stored under the "install" links from:
+    
+       https://buildd.debian.org/status/package.php?p=libgpg-error&suite=unstable
+       https://buildd.debian-ports.org/status/package.php?p=libgpg-error&suite=unstable
+    
+    and then extract the headers via:
+    
+    for x in fetch*; do
+       awk '/^## lock-obj-pub\..*\.h$/{ X=2 } { if (X > 0) { print $0 } }  /^##$/{ X = X-1 } ' < "$x" >tmp
+       mv -f tmp $( head -n1 < tmp | cut -f2 -d\ )
+    done
+
+diff --git a/src/Makefile.am b/src/Makefile.am
+index e201cee..bc8449e 100644
+--- a/src/Makefile.am
++++ b/src/Makefile.am
+@@ -41,8 +41,29 @@ endif
+ 
+ # Distributed lock object definitions for cross compilation.
+ lock_obj_pub = \
+-	syscfg/lock-obj-pub.mingw32.h \
+-        syscfg/lock-obj-pub.arm-unknown-linux-androideabi.h
++        syscfg/lock-obj-pub.aarch64-unknown-linux-gnu.h     \
++        syscfg/lock-obj-pub.alpha-unknown-linux-gnu.h       \
++        syscfg/lock-obj-pub.arm-unknown-linux-androideabi.h \
++        syscfg/lock-obj-pub.arm-unknown-linux-gnueabi.h     \
++        syscfg/lock-obj-pub.arm-unknown-linux-gnueabihf.h   \
++        syscfg/lock-obj-pub.hppa-unknown-linux-gnu.h        \
++        syscfg/lock-obj-pub.i486-pc-gnu.h                   \
++        syscfg/lock-obj-pub.i486-pc-kfreebsd-gnu.h          \
++        syscfg/lock-obj-pub.i486-pc-linux-gnu.h             \
++        syscfg/lock-obj-pub.m68k-unknown-linux-gnu.h        \
++        syscfg/lock-obj-pub.mips-unknown-linux-gnu.h        \
++        syscfg/lock-obj-pub.mipsel-unknown-linux-gnu.h      \
++        syscfg/lock-obj-pub.powerpc-unknown-linux-gnu.h     \
++        syscfg/lock-obj-pub.powerpc64-unknown-linux-gnu.h   \
++        syscfg/lock-obj-pub.s390x-ibm-linux-gnu.h           \
++        syscfg/lock-obj-pub.sh4-unknown-linux-gnu.h         \
++        syscfg/lock-obj-pub.sparc-unknown-linux-gnu.h       \
++        syscfg/lock-obj-pub.x86_64-pc-kfreebsd-gnu.h        \
++        syscfg/lock-obj-pub.x86_64-pc-linux-gnu.h           \
++        syscfg/lock-obj-pub.x86_64-pc-linux-gnux32.h        \
++	syscfg/lock-obj-pub.mingw32.h
++
++
+ 
+ lib_LTLIBRARIES = libgpg-error.la
+ include_HEADERS = gpg-error.h
+diff --git a/src/syscfg/lock-obj-pub.aarch64-unknown-linux-gnu.h b/src/syscfg/lock-obj-pub.aarch64-unknown-linux-gnu.h
+new file mode 100644
+index 0000000..adf10fc
+--- /dev/null
++++ b/src/syscfg/lock-obj-pub.aarch64-unknown-linux-gnu.h
+@@ -0,0 +1,26 @@
++## lock-obj-pub.aarch64-unknown-linux-gnu.h
++## File created by gen-posix-lock-obj - DO NOT EDIT
++## To be included by mkheader into gpg-error.h
++
++typedef struct
++{
++  long _vers;
++  union {
++    volatile char _priv[48];
++    long _x_align;
++    long *_xp_align;
++  } u;
++} gpgrt_lock_t;
++
++#define GPGRT_LOCK_INITIALIZER {1,{{0,0,0,0,0,0,0,0, \
++                                    0,0,0,0,0,0,0,0, \
++                                    0,0,0,0,0,0,0,0, \
++                                    0,0,0,0,0,0,0,0, \
++                                    0,0,0,0,0,0,0,0, \
++                                    0,0,0,0,0,0,0,0}}}
++##
++## Local Variables:
++## mode: c
++## buffer-read-only: t
++## End:
++##
+diff --git a/src/syscfg/lock-obj-pub.alpha-unknown-linux-gnu.h b/src/syscfg/lock-obj-pub.alpha-unknown-linux-gnu.h
+new file mode 100644
+index 0000000..80ddf01
+--- /dev/null
++++ b/src/syscfg/lock-obj-pub.alpha-unknown-linux-gnu.h
+@@ -0,0 +1,25 @@
++## lock-obj-pub.alpha-unknown-linux-gnu.h
++## File created by gen-posix-lock-obj - DO NOT EDIT
++## To be included by mkheader into gpg-error.h
++
++typedef struct
++{
++  long _vers;
++  union {
++    volatile char _priv[40];
++    long _x_align;
++    long *_xp_align;
++  } u;
++} gpgrt_lock_t;
++
++#define GPGRT_LOCK_INITIALIZER {1,{{0,0,0,0,0,0,0,0, \
++                                    0,0,0,0,0,0,0,0, \
++                                    0,0,0,0,0,0,0,0, \
++                                    0,0,0,0,0,0,0,0, \
++                                    0,0,0,0,0,0,0,0}}}
++##
++## Local Variables:
++## mode: c
++## buffer-read-only: t
++## End:
++##
+diff --git a/src/syscfg/lock-obj-pub.arm-unknown-linux-gnueabi.h b/src/syscfg/lock-obj-pub.arm-unknown-linux-gnueabi.h
+new file mode 100644
+index 0000000..7a92276
+--- /dev/null
++++ b/src/syscfg/lock-obj-pub.arm-unknown-linux-gnueabi.h
+@@ -0,0 +1,23 @@
++## lock-obj-pub.arm-unknown-linux-gnueabi.h
++## File created by gen-posix-lock-obj - DO NOT EDIT
++## To be included by mkheader into gpg-error.h
++
++typedef struct
++{
++  long _vers;
++  union {
++    volatile char _priv[24];
++    long _x_align;
++    long *_xp_align;
++  } u;
++} gpgrt_lock_t;
++
++#define GPGRT_LOCK_INITIALIZER {1,{{0,0,0,0,0,0,0,0, \
++                                    0,0,0,0,0,0,0,0, \
++                                    0,0,0,0,0,0,0,0}}}
++##
++## Local Variables:
++## mode: c
++## buffer-read-only: t
++## End:
++##
+diff --git a/src/syscfg/lock-obj-pub.arm-unknown-linux-gnueabihf.h b/src/syscfg/lock-obj-pub.arm-unknown-linux-gnueabihf.h
+new file mode 100644
+index 0000000..6636400
+--- /dev/null
++++ b/src/syscfg/lock-obj-pub.arm-unknown-linux-gnueabihf.h
+@@ -0,0 +1,23 @@
++## lock-obj-pub.arm-unknown-linux-gnueabihf.h
++## File created by gen-posix-lock-obj - DO NOT EDIT
++## To be included by mkheader into gpg-error.h
++
++typedef struct
++{
++  long _vers;
++  union {
++    volatile char _priv[24];
++    long _x_align;
++    long *_xp_align;
++  } u;
++} gpgrt_lock_t;
++
++#define GPGRT_LOCK_INITIALIZER {1,{{0,0,0,0,0,0,0,0, \
++                                    0,0,0,0,0,0,0,0, \
++                                    0,0,0,0,0,0,0,0}}}
++##
++## Local Variables:
++## mode: c
++## buffer-read-only: t
++## End:
++##
+diff --git a/src/syscfg/lock-obj-pub.hppa-unknown-linux-gnu.h b/src/syscfg/lock-obj-pub.hppa-unknown-linux-gnu.h
+new file mode 100644
+index 0000000..fd47664
+--- /dev/null
++++ b/src/syscfg/lock-obj-pub.hppa-unknown-linux-gnu.h
+@@ -0,0 +1,26 @@
++## lock-obj-pub.hppa-unknown-linux-gnu.h
++## File created by gen-posix-lock-obj - DO NOT EDIT
++## To be included by mkheader into gpg-error.h
++
++typedef struct
++{
++  long _vers;
++  union {
++    volatile char _priv[48];
++    long _x_align;
++    long *_xp_align;
++  } u;
++} gpgrt_lock_t;
++
++#define GPGRT_LOCK_INITIALIZER {1,{{0,0,0,0,0,0,0,0, \
++                                    0,0,0,0,0,0,0,0, \
++                                    0,0,0,0,0,0,0,0, \
++                                    0,0,0,0,0,0,0,0, \
++                                    0,0,0,0,0,0,0,0, \
++                                    0,0,0,0,0,0,0,0}}}
++##
++## Local Variables:
++## mode: c
++## buffer-read-only: t
++## End:
++##
+diff --git a/src/syscfg/lock-obj-pub.i486-pc-gnu.h b/src/syscfg/lock-obj-pub.i486-pc-gnu.h
+new file mode 100644
+index 0000000..59b61e1
+--- /dev/null
++++ b/src/syscfg/lock-obj-pub.i486-pc-gnu.h
+@@ -0,0 +1,24 @@
++## lock-obj-pub.i486-pc-gnu.h
++## File created by gen-posix-lock-obj - DO NOT EDIT
++## To be included by mkheader into gpg-error.h
++
++typedef struct
++{
++  long _vers;
++  union {
++    volatile char _priv[32];
++    long _x_align;
++    long *_xp_align;
++  } u;
++} gpgrt_lock_t;
++
++#define GPGRT_LOCK_INITIALIZER {1,{{0,0,0,0,0,0,0,0, \
++                                    0,0,0,0,0,0,0,0, \
++                                    0,0,0,0,0,0,0,0, \
++                                    0,0,0,0,0,0,0,0}}}
++##
++## Local Variables:
++## mode: c
++## buffer-read-only: t
++## End:
++##
+diff --git a/src/syscfg/lock-obj-pub.i486-pc-kfreebsd-gnu.h b/src/syscfg/lock-obj-pub.i486-pc-kfreebsd-gnu.h
+new file mode 100644
+index 0000000..8a680d1
+--- /dev/null
++++ b/src/syscfg/lock-obj-pub.i486-pc-kfreebsd-gnu.h
+@@ -0,0 +1,23 @@
++## lock-obj-pub.i486-pc-kfreebsd-gnu.h
++## File created by gen-posix-lock-obj - DO NOT EDIT
++## To be included by mkheader into gpg-error.h
++
++typedef struct
++{
++  long _vers;
++  union {
++    volatile char _priv[24];
++    long _x_align;
++    long *_xp_align;
++  } u;
++} gpgrt_lock_t;
++
++#define GPGRT_LOCK_INITIALIZER {1,{{0,0,0,0,0,0,0,0, \
++                                    0,0,0,0,0,0,0,0, \
++                                    0,0,0,0,0,0,0,0}}}
++##
++## Local Variables:
++## mode: c
++## buffer-read-only: t
++## End:
++##
+diff --git a/src/syscfg/lock-obj-pub.i486-pc-linux-gnu.h b/src/syscfg/lock-obj-pub.i486-pc-linux-gnu.h
+new file mode 100644
+index 0000000..f1849c4
+--- /dev/null
++++ b/src/syscfg/lock-obj-pub.i486-pc-linux-gnu.h
+@@ -0,0 +1,23 @@
++## lock-obj-pub.i486-pc-linux-gnu.h
++## File created by gen-posix-lock-obj - DO NOT EDIT
++## To be included by mkheader into gpg-error.h
++
++typedef struct
++{
++  long _vers;
++  union {
++    volatile char _priv[24];
++    long _x_align;
++    long *_xp_align;
++  } u;
++} gpgrt_lock_t;
++
++#define GPGRT_LOCK_INITIALIZER {1,{{0,0,0,0,0,0,0,0, \
++                                    0,0,0,0,0,0,0,0, \
++                                    0,0,0,0,0,0,0,0}}}
++##
++## Local Variables:
++## mode: c
++## buffer-read-only: t
++## End:
++##
+diff --git a/src/syscfg/lock-obj-pub.m68k-unknown-linux-gnu.h b/src/syscfg/lock-obj-pub.m68k-unknown-linux-gnu.h
+new file mode 100644
+index 0000000..3788797
+--- /dev/null
++++ b/src/syscfg/lock-obj-pub.m68k-unknown-linux-gnu.h
+@@ -0,0 +1,23 @@
++## lock-obj-pub.m68k-unknown-linux-gnu.h
++## File created by gen-posix-lock-obj - DO NOT EDIT
++## To be included by mkheader into gpg-error.h
++
++typedef struct
++{
++  long _vers;
++  union {
++    volatile char _priv[24];
++    long _x_align;
++    long *_xp_align;
++  } u;
++} gpgrt_lock_t;
++
++#define GPGRT_LOCK_INITIALIZER {1,{{0,0,0,0,0,0,0,0, \
++                                    0,0,0,0,0,0,0,0, \
++                                    0,0,0,0,0,0,0,0}}}
++##
++## Local Variables:
++## mode: c
++## buffer-read-only: t
++## End:
++##
+diff --git a/src/syscfg/lock-obj-pub.mips-unknown-linux-gnu.h b/src/syscfg/lock-obj-pub.mips-unknown-linux-gnu.h
+new file mode 100644
+index 0000000..b31206e
+--- /dev/null
++++ b/src/syscfg/lock-obj-pub.mips-unknown-linux-gnu.h
+@@ -0,0 +1,23 @@
++## lock-obj-pub.mips-unknown-linux-gnu.h
++## File created by gen-posix-lock-obj - DO NOT EDIT
++## To be included by mkheader into gpg-error.h
++
++typedef struct
++{
++  long _vers;
++  union {
++    volatile char _priv[24];
++    long _x_align;
++    long *_xp_align;
++  } u;
++} gpgrt_lock_t;
++
++#define GPGRT_LOCK_INITIALIZER {1,{{0,0,0,0,0,0,0,0, \
++                                    0,0,0,0,0,0,0,0, \
++                                    0,0,0,0,0,0,0,0}}}
++##
++## Local Variables:
++## mode: c
++## buffer-read-only: t
++## End:
++##
+diff --git a/src/syscfg/lock-obj-pub.mipsel-unknown-linux-gnu.h b/src/syscfg/lock-obj-pub.mipsel-unknown-linux-gnu.h
+new file mode 100644
+index 0000000..3a24571
+--- /dev/null
++++ b/src/syscfg/lock-obj-pub.mipsel-unknown-linux-gnu.h
+@@ -0,0 +1,23 @@
++## lock-obj-pub.mipsel-unknown-linux-gnu.h
++## File created by gen-posix-lock-obj - DO NOT EDIT
++## To be included by mkheader into gpg-error.h
++
++typedef struct
++{
++  long _vers;
++  union {
++    volatile char _priv[24];
++    long _x_align;
++    long *_xp_align;
++  } u;
++} gpgrt_lock_t;
++
++#define GPGRT_LOCK_INITIALIZER {1,{{0,0,0,0,0,0,0,0, \
++                                    0,0,0,0,0,0,0,0, \
++                                    0,0,0,0,0,0,0,0}}}
++##
++## Local Variables:
++## mode: c
++## buffer-read-only: t
++## End:
++##
+diff --git a/src/syscfg/lock-obj-pub.powerpc-unknown-linux-gnu.h b/src/syscfg/lock-obj-pub.powerpc-unknown-linux-gnu.h
+new file mode 100644
+index 0000000..6601bc9
+--- /dev/null
++++ b/src/syscfg/lock-obj-pub.powerpc-unknown-linux-gnu.h
+@@ -0,0 +1,23 @@
++## lock-obj-pub.powerpc-unknown-linux-gnu.h
++## File created by gen-posix-lock-obj - DO NOT EDIT
++## To be included by mkheader into gpg-error.h
++
++typedef struct
++{
++  long _vers;
++  union {
++    volatile char _priv[24];
++    long _x_align;
++    long *_xp_align;
++  } u;
++} gpgrt_lock_t;
++
++#define GPGRT_LOCK_INITIALIZER {1,{{0,0,0,0,0,0,0,0, \
++                                    0,0,0,0,0,0,0,0, \
++                                    0,0,0,0,0,0,0,0}}}
++##
++## Local Variables:
++## mode: c
++## buffer-read-only: t
++## End:
++##
+diff --git a/src/syscfg/lock-obj-pub.powerpc64-unknown-linux-gnu.h b/src/syscfg/lock-obj-pub.powerpc64-unknown-linux-gnu.h
+new file mode 100644
+index 0000000..635e6eb
+--- /dev/null
++++ b/src/syscfg/lock-obj-pub.powerpc64-unknown-linux-gnu.h
+@@ -0,0 +1,25 @@
++## lock-obj-pub.powerpc64-unknown-linux-gnu.h
++## File created by gen-posix-lock-obj - DO NOT EDIT
++## To be included by mkheader into gpg-error.h
++
++typedef struct
++{
++  long _vers;
++  union {
++    volatile char _priv[40];
++    long _x_align;
++    long *_xp_align;
++  } u;
++} gpgrt_lock_t;
++
++#define GPGRT_LOCK_INITIALIZER {1,{{0,0,0,0,0,0,0,0, \
++                                    0,0,0,0,0,0,0,0, \
++                                    0,0,0,0,0,0,0,0, \
++                                    0,0,0,0,0,0,0,0, \
++                                    0,0,0,0,0,0,0,0}}}
++##
++## Local Variables:
++## mode: c
++## buffer-read-only: t
++## End:
++##
+diff --git a/src/syscfg/lock-obj-pub.s390x-ibm-linux-gnu.h b/src/syscfg/lock-obj-pub.s390x-ibm-linux-gnu.h
+new file mode 100644
+index 0000000..70f6e33
+--- /dev/null
++++ b/src/syscfg/lock-obj-pub.s390x-ibm-linux-gnu.h
+@@ -0,0 +1,25 @@
++## lock-obj-pub.s390x-ibm-linux-gnu.h
++## File created by gen-posix-lock-obj - DO NOT EDIT
++## To be included by mkheader into gpg-error.h
++
++typedef struct
++{
++  long _vers;
++  union {
++    volatile char _priv[40];
++    long _x_align;
++    long *_xp_align;
++  } u;
++} gpgrt_lock_t;
++
++#define GPGRT_LOCK_INITIALIZER {1,{{0,0,0,0,0,0,0,0, \
++                                    0,0,0,0,0,0,0,0, \
++                                    0,0,0,0,0,0,0,0, \
++                                    0,0,0,0,0,0,0,0, \
++                                    0,0,0,0,0,0,0,0}}}
++##
++## Local Variables:
++## mode: c
++## buffer-read-only: t
++## End:
++##
+diff --git a/src/syscfg/lock-obj-pub.sh4-unknown-linux-gnu.h b/src/syscfg/lock-obj-pub.sh4-unknown-linux-gnu.h
+new file mode 100644
+index 0000000..eb62ba3
+--- /dev/null
++++ b/src/syscfg/lock-obj-pub.sh4-unknown-linux-gnu.h
+@@ -0,0 +1,23 @@
++## lock-obj-pub.sh4-unknown-linux-gnu.h
++## File created by gen-posix-lock-obj - DO NOT EDIT
++## To be included by mkheader into gpg-error.h
++
++typedef struct
++{
++  long _vers;
++  union {
++    volatile char _priv[24];
++    long _x_align;
++    long *_xp_align;
++  } u;
++} gpgrt_lock_t;
++
++#define GPGRT_LOCK_INITIALIZER {1,{{0,0,0,0,0,0,0,0, \
++                                    0,0,0,0,0,0,0,0, \
++                                    0,0,0,0,0,0,0,0}}}
++##
++## Local Variables:
++## mode: c
++## buffer-read-only: t
++## End:
++##
+diff --git a/src/syscfg/lock-obj-pub.sparc-unknown-linux-gnu.h b/src/syscfg/lock-obj-pub.sparc-unknown-linux-gnu.h
+new file mode 100644
+index 0000000..2748b26
+--- /dev/null
++++ b/src/syscfg/lock-obj-pub.sparc-unknown-linux-gnu.h
+@@ -0,0 +1,23 @@
++## lock-obj-pub.sparc-unknown-linux-gnu.h
++## File created by gen-posix-lock-obj - DO NOT EDIT
++## To be included by mkheader into gpg-error.h
++
++typedef struct
++{
++  long _vers;
++  union {
++    volatile char _priv[24];
++    long _x_align;
++    long *_xp_align;
++  } u;
++} gpgrt_lock_t;
++
++#define GPGRT_LOCK_INITIALIZER {1,{{0,0,0,0,0,0,0,0, \
++                                    0,0,0,0,0,0,0,0, \
++                                    0,0,0,0,0,0,0,0}}}
++##
++## Local Variables:
++## mode: c
++## buffer-read-only: t
++## End:
++##
+diff --git a/src/syscfg/lock-obj-pub.x86_64-pc-kfreebsd-gnu.h b/src/syscfg/lock-obj-pub.x86_64-pc-kfreebsd-gnu.h
+new file mode 100644
+index 0000000..7fb596c
+--- /dev/null
++++ b/src/syscfg/lock-obj-pub.x86_64-pc-kfreebsd-gnu.h
+@@ -0,0 +1,25 @@
++## lock-obj-pub.x86_64-pc-kfreebsd-gnu.h
++## File created by gen-posix-lock-obj - DO NOT EDIT
++## To be included by mkheader into gpg-error.h
++
++typedef struct
++{
++  long _vers;
++  union {
++    volatile char _priv[40];
++    long _x_align;
++    long *_xp_align;
++  } u;
++} gpgrt_lock_t;
++
++#define GPGRT_LOCK_INITIALIZER {1,{{0,0,0,0,0,0,0,0, \
++                                    0,0,0,0,0,0,0,0, \
++                                    0,0,0,0,0,0,0,0, \
++                                    0,0,0,0,0,0,0,0, \
++                                    0,0,0,0,0,0,0,0}}}
++##
++## Local Variables:
++## mode: c
++## buffer-read-only: t
++## End:
++##
+diff --git a/src/syscfg/lock-obj-pub.x86_64-pc-linux-gnu.h b/src/syscfg/lock-obj-pub.x86_64-pc-linux-gnu.h
+new file mode 100644
+index 0000000..0dd6431
+--- /dev/null
++++ b/src/syscfg/lock-obj-pub.x86_64-pc-linux-gnu.h
+@@ -0,0 +1,25 @@
++## lock-obj-pub.x86_64-pc-linux-gnu.h
++## File created by gen-posix-lock-obj - DO NOT EDIT
++## To be included by mkheader into gpg-error.h
++
++typedef struct
++{
++  long _vers;
++  union {
++    volatile char _priv[40];
++    long _x_align;
++    long *_xp_align;
++  } u;
++} gpgrt_lock_t;
++
++#define GPGRT_LOCK_INITIALIZER {1,{{0,0,0,0,0,0,0,0, \
++                                    0,0,0,0,0,0,0,0, \
++                                    0,0,0,0,0,0,0,0, \
++                                    0,0,0,0,0,0,0,0, \
++                                    0,0,0,0,0,0,0,0}}}
++##
++## Local Variables:
++## mode: c
++## buffer-read-only: t
++## End:
++##
+diff --git a/src/syscfg/lock-obj-pub.x86_64-pc-linux-gnux32.h b/src/syscfg/lock-obj-pub.x86_64-pc-linux-gnux32.h
+new file mode 100644
+index 0000000..e85bd30
+--- /dev/null
++++ b/src/syscfg/lock-obj-pub.x86_64-pc-linux-gnux32.h
+@@ -0,0 +1,24 @@
++## lock-obj-pub.x86_64-pc-linux-gnux32.h
++## File created by gen-posix-lock-obj - DO NOT EDIT
++## To be included by mkheader into gpg-error.h
++
++typedef struct
++{
++  long _vers;
++  union {
++    volatile char _priv[32];
++    long _x_align;
++    long *_xp_align;
++  } u;
++} gpgrt_lock_t;
++
++#define GPGRT_LOCK_INITIALIZER {1,{{0,0,0,0,0,0,0,0, \
++                                    0,0,0,0,0,0,0,0, \
++                                    0,0,0,0,0,0,0,0, \
++                                    0,0,0,0,0,0,0,0}}}
++##
++## Local Variables:
++## mode: c
++## buffer-read-only: t
++## End:
++##

Modified: libgpg-error/trunk/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-gnupg/libgpg-error/trunk/debian/patches/series?rev=420&op=diff
==============================================================================
--- libgpg-error/trunk/debian/patches/series	(original)
+++ libgpg-error/trunk/debian/patches/series	Mon Aug  4 21:16:03 2014
@@ -0,0 +1 @@
+pre-built-lock-obj.patch




More information about the Pkg-gnupg-commit mailing list