vanhofen
6 years ago
5 changed files with 108 additions and 9 deletions
@ -0,0 +1,30 @@ |
|||||
|
From 10342e6b600858b091bc7771e454d9e06af06410 Mon Sep 17 00:00:00 2001 |
||||
|
From: Khem Raj <raj.khem@gmail.com> |
||||
|
Date: Thu, 2 Nov 2017 18:20:57 +0800 |
||||
|
Subject: [PATCH] Add CC tag to build |
||||
|
|
||||
|
Add CC tag to build |
||||
|
|
||||
|
Upstream-Status: Pending |
||||
|
Signed-off-by: Khem Raj <raj.khem@gmail.com> |
||||
|
Signed-off-by: Dengke Du <dengke.du@windriver.com> |
||||
|
---
|
||||
|
Makefile.in | 2 +- |
||||
|
1 file changed, 1 insertion(+), 1 deletion(-) |
||||
|
|
||||
|
diff --git a/Makefile.in b/Makefile.in
|
||||
|
index 9560a95..d444bd6 100644
|
||||
|
--- a/Makefile.in
|
||||
|
+++ b/Makefile.in
|
||||
|
@@ -330,7 +330,7 @@ LIBCURRENT = @LIBCURRENT@
|
||||
|
LIBOBJS = @LIBOBJS@ |
||||
|
LIBREVISION = @LIBREVISION@ |
||||
|
LIBS = @LIBS@ |
||||
|
-LIBTOOL = @LIBTOOL@
|
||||
|
+LIBTOOL = @LIBTOOL@ --tag CC
|
||||
|
LIPO = @LIPO@ |
||||
|
LN_S = @LN_S@ |
||||
|
LTLIBOBJS = @LTLIBOBJS@ |
||||
|
--
|
||||
|
2.7.4 |
||||
|
|
@ -0,0 +1,11 @@ |
|||||
|
--- a/scripts/build/mkver.in
|
||||
|
+++ b/scripts/build/mkver.in
|
||||
|
@@ -15,7 +15,7 @@
|
||||
|
*) ConfStr="${ConfStr}-@VER_SUFFIX@" ;; |
||||
|
esac |
||||
|
|
||||
|
-ConfStr="$ConfStr `LC_TIME=C TZ=UTC date`"
|
||||
|
+ConfStr="$ConfStr"
|
||||
|
|
||||
|
if [ ! -f .version ]; then |
||||
|
echo 0 > .version |
@ -0,0 +1,26 @@ |
|||||
|
--- a/Makefile.am
|
||||
|
+++ b/Makefile.am
|
||||
|
@@ -14,10 +14,7 @@ PACKAGE_VERSION = @PACKAGE_VERSION@
|
||||
|
|
||||
|
ACLOCAL_AMFLAGS = -I m4 |
||||
|
SUBDIRS = \ |
||||
|
- include \
|
||||
|
- man-po \
|
||||
|
- po \
|
||||
|
- testsuite
|
||||
|
+ include
|
||||
|
|
||||
|
AM_CFLAGS = -Iproc |
||||
|
LDADD = ./proc/libprocps.la $(CYGWINFLAGS) |
||||
|
--- a/configure.ac
|
||||
|
+++ b/configure.ac
|
||||
|
@@ -292,8 +292,5 @@ AC_CHECK_FUNCS([__fpending alarm atexit dup2 gethostname getpagesize gettimeofda
|
||||
|
|
||||
|
AC_CONFIG_FILES([Makefile |
||||
|
include/Makefile |
||||
|
- man-po/Makefile
|
||||
|
- po/Makefile.in
|
||||
|
- proc/libprocps.pc
|
||||
|
- testsuite/Makefile])
|
||||
|
+ proc/libprocps.pc])
|
||||
|
AC_OUTPUT |
@ -0,0 +1,24 @@ |
|||||
|
From 0825db94fc91fa2150c0e649e92cc8dcc44f4b38 Mon Sep 17 00:00:00 2001 |
||||
|
From: Alexander Kanavin <alex.kanavin@gmail.com> |
||||
|
Date: Wed, 4 Apr 2018 14:09:45 +0300 |
||||
|
Subject: [PATCH] Fix out of tree builds |
||||
|
|
||||
|
Upstream-Status: Pending |
||||
|
Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> |
||||
|
---
|
||||
|
include/nls.h | 2 +- |
||||
|
1 file changed, 1 insertion(+), 1 deletion(-) |
||||
|
|
||||
|
diff --git a/include/nls.h b/include/nls.h
|
||||
|
index 1166b7b..f5abe05 100644
|
||||
|
--- a/include/nls.h
|
||||
|
+++ b/include/nls.h
|
||||
|
@@ -6,7 +6,7 @@
|
||||
|
#define PROCPS_NG_NLS_H |
||||
|
|
||||
|
/* programs issuing textdomain() need PACKAGE string */ |
||||
|
-#include "../config.h"
|
||||
|
+#include "config.h"
|
||||
|
|
||||
|
/* programs issuing bindtextdomain() also need LOCALEDIR string */ |
||||
|
#ifndef LOCALEDIR |
Loading…
Reference in new issue