- Import debian patch sets. This fixes some bugs and allows us to build the library without any special CFLAGS - Add ucl-noexecstack.patch: Fix FTBS on i586 due to executable stack OBS-URL: https://build.opensuse.org/request/show/985184 OBS-URL: https://build.opensuse.org/package/show/Archiving/ucl?expand=0&rev=11
28 lines
824 B
Diff
28 lines
824 B
Diff
From: Robert Luberda <robert@debian.org>
|
|
Date: Sun, 31 May 2015 13:09:15 +0200
|
|
Subject: 03 Reproducible build
|
|
|
|
Introduced BUILD_DATETIME pre-processor variable to
|
|
be used instead of __DATE__ __TIME__ to make build
|
|
reproducible.
|
|
---
|
|
src/ucl_util.c | 4 ++++
|
|
1 file changed, 4 insertions(+)
|
|
|
|
diff --git a/src/ucl_util.c b/src/ucl_util.c
|
|
index 7e49a2a..58aa0ea 100644
|
|
--- a/src/ucl_util.c
|
|
+++ b/src/ucl_util.c
|
|
@@ -55,7 +55,11 @@ static const char __ucl_copyright[] =
|
|
"<markus@oberhumer.com>\n"
|
|
"http://www.oberhumer.com $\n\n"
|
|
"$Id: UCL version: v" UCL_VERSION_STRING ", " UCL_VERSION_DATE " $\n"
|
|
+#if defined (BUILD_DATETIME)
|
|
+ "$Built: " BUILD_DATETIME " $\n"
|
|
+#else
|
|
"$Built: " __DATE__ " " __TIME__ " $\n"
|
|
+#endif
|
|
"$Info: " ACC_INFO_OS
|
|
#if defined(ACC_INFO_OS_POSIX)
|
|
"/" ACC_INFO_OS_POSIX
|