pkgconf: new package, pkgconf 0.9.12-git
This commit is contained in:
11
pkgconf/src/pkgconf-dist-doc.patch
Normal file
11
pkgconf/src/pkgconf-dist-doc.patch
Normal file
@@ -0,0 +1,11 @@
|
||||
--- pkgconf-0.9.12-56-g7e6fa32/Makefile.am.orig 2016-01-21 17:16:39.000000000 +0100
|
||||
+++ pkgconf-0.9.12-56-g7e6fa32/Makefile.am 2016-03-05 17:55:49.610012000 +0100
|
||||
@@ -72,7 +72,7 @@
|
||||
pkgconf_SOURCES = main.c getopt_long.c
|
||||
noinst_HEADERS = getopt_long.h
|
||||
|
||||
-dist_doc_DATA = README.md AUTHORS
|
||||
+dist_doc_DATA = README.md AUTHORS NEWS COPYING
|
||||
|
||||
m4datadir = $(datadir)/aclocal
|
||||
m4data_DATA = pkg.m4
|
||||
15
pkgconf/src/pkgconf-include-order.patch
Normal file
15
pkgconf/src/pkgconf-include-order.patch
Normal file
@@ -0,0 +1,15 @@
|
||||
--- pkgconf-0.9.12-56-g7e6fa32/libpkgconf/bsdstubs.c.orig 2016-01-21 17:16:39.000000000 +0100
|
||||
+++ pkgconf-0.9.12-56-g7e6fa32/libpkgconf/bsdstubs.c 2016-03-05 18:10:11.010001000 +0100
|
||||
@@ -17,11 +17,10 @@
|
||||
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
+#include <libpkgconf/config.h>
|
||||
#include <sys/types.h>
|
||||
#include <string.h>
|
||||
-
|
||||
#include <libpkgconf/bsdstubs.h>
|
||||
-#include <libpkgconf/config.h>
|
||||
|
||||
#ifndef HAVE_STRLCPY
|
||||
|
||||
28
pkgconf/src/pkgconf-stdint_h.patch
Normal file
28
pkgconf/src/pkgconf-stdint_h.patch
Normal file
@@ -0,0 +1,28 @@
|
||||
--- pkgconf-0.9.12-56-g7e6fa32/libpkgconf/stdinc.h.orig 2016-01-21 17:16:39.000000000 +0100
|
||||
+++ pkgconf-0.9.12-56-g7e6fa32/libpkgconf/stdinc.h 2016-03-05 17:27:34.870004000 +0100
|
||||
@@ -27,7 +27,11 @@
|
||||
#include <sys/types.h>
|
||||
#include <sys/stat.h>
|
||||
#include <unistd.h>
|
||||
+#ifdef HAVE_STDINT_H
|
||||
#include <stdint.h>
|
||||
+#else
|
||||
+#include <inttypes.h>
|
||||
+#endif
|
||||
|
||||
#ifdef _WIN32
|
||||
# define WIN32_LEAN_AND_MEAN
|
||||
--- pkgconf-0.9.12-56-g7e6fa32/getopt_long.h.orig 2016-01-21 17:16:39.000000000 +0100
|
||||
+++ pkgconf-0.9.12-56-g7e6fa32/getopt_long.h 2016-03-05 17:28:49.420018000 +0100
|
||||
@@ -33,7 +33,11 @@
|
||||
#ifndef _GETOPT_LONG_H_
|
||||
#define _GETOPT_LONG_H_
|
||||
|
||||
+#ifdef HAVE_STDINT_H
|
||||
#include <stdint.h>
|
||||
+#else
|
||||
+#include <inttypes.h>
|
||||
+#endif
|
||||
|
||||
/*
|
||||
* GNU-like getopt_long()/getopt_long_only() with 4.4BSD optreset extension.
|
||||
Reference in New Issue
Block a user