summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Biebl <biebl@debian.org>2013-05-06 23:44:08 +0200
committerMichael Biebl <biebl@debian.org>2013-05-06 23:44:08 +0200
commitf3c9b4556db7534350e8283e1a9919feb2d2787c (patch)
treec0fe3a52eec748c3d82770e9997246295749ed23
parent36126fc8ec10abd0807fcdceca09dba5490ba2d4 (diff)
downloadrsyslog-f3c9b4556db7534350e8283e1a9919feb2d2787c.tar.gz
Remove 02-fix-non-libgcrypt-build.patch, merged upstream.
-rw-r--r--debian/changelog1
-rw-r--r--debian/patches/02-fix-non-libgcrypt-build.patch63
-rw-r--r--debian/patches/series1
3 files changed, 1 insertions, 64 deletions
diff --git a/debian/changelog b/debian/changelog
index 6703149..da88263 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,6 +1,7 @@
rsyslog (7.3.14-1) UNRELEASED; urgency=low
* New upstream release.
+ * Remove 02-fix-non-libgcrypt-build.patch, merged upstream.
-- Michael Biebl <biebl@debian.org> Mon, 06 May 2013 23:43:11 +0200
diff --git a/debian/patches/02-fix-non-libgcrypt-build.patch b/debian/patches/02-fix-non-libgcrypt-build.patch
deleted file mode 100644
index d61b346..0000000
--- a/debian/patches/02-fix-non-libgcrypt-build.patch
+++ /dev/null
@@ -1,63 +0,0 @@
-From 09e90b6faf917746896a5e6bfd51e9e3e527b459 Mon Sep 17 00:00:00 2001
-From: Michael Biebl <biebl@debian.org>
-Date: Thu, 25 Apr 2013 22:45:00 +0200
-Subject: [PATCH] build: fix build if libgcrypt support is disabled
-
-We don't want to hard-code `libgcrypt-config --libs` at various.
-Also, make sure LIBGCRYPT_CFLAGS and LIBGCRYPT_LIBS are correctly
-substituted.
-
----
- configure.ac | 2 ++
- 1 file changed, 2 insertions(+)
-
-Index: rsyslog/configure.ac
-===================================================================
---- rsyslog.orig/configure.ac 2013-04-25 23:35:06.891249916 +0200
-+++ rsyslog/configure.ac 2013-04-25 23:35:06.887249875 +0200
-@@ -804,6 +804,8 @@
- AC_DEFINE([ENABLE_LIBGCRYPT], [1], [Indicator that LIBGCRYPT is present])
- fi
- AM_CONDITIONAL(ENABLE_LIBGCRYPT, test x$enable_libgcrypt = xyes)
-+AC_SUBST(LIBGCRYPT_CFLAGS)
-+AC_SUBST(LIBGCRYPT_LIBS)
-
-
- # support for building the rsyslogd runtime
-Index: rsyslog/runtime/Makefile.am
-===================================================================
---- rsyslog.orig/runtime/Makefile.am 2013-04-25 23:35:06.891249916 +0200
-+++ rsyslog/runtime/Makefile.am 2013-04-25 23:35:06.887249875 +0200
-@@ -185,7 +185,7 @@
- pkglib_LTLIBRARIES += lmcry_gcry.la
- lmcry_gcry_la_SOURCES = lmcry_gcry.c lmcry_gcry.h
- lmcry_gcry_la_CPPFLAGS = $(RSRT_CFLAGS) $(LIBGCRYPT_CFLAGS)
-- lmcry_gcry_la_LDFLAGS = -module -avoid-version `libgcrypt-config --libs`
-+ lmcry_gcry_la_LDFLAGS = -module -avoid-version
- lmcry_gcry_la_LIBADD = libgcry.la $(LIBGCRYPT_LIBS)
- endif
-
-Index: rsyslog/tools/Makefile.am
-===================================================================
---- rsyslog.orig/tools/Makefile.am 2013-04-25 23:35:25.027438181 +0200
-+++ rsyslog/tools/Makefile.am 2013-04-25 23:36:04.031842749 +0200
-@@ -40,9 +40,8 @@
- # note: it looks like librsyslog.la must be explicitely given on LDDADD,
- # otherwise dependencies are not properly calculated (resulting in a
- # potentially incomplete build, a problem we had several times...)
--rsyslogd_LDADD = ../grammar/libgrammar.la ../runtime/librsyslog.la $(ZLIB_LIBS) $(PTHREADS_LIBS) $(RSRT_LIBS) $(SOL_LIBS) $(LIBEE_LIBS) $(LIBLOGNORM_LIBS) $(LIBUUID_LIBS)
--rsyslogd_LDFLAGS = -export-dynamic `libgcrypt-config --libs`
--#rsyslogd_LDFLAGS = -export-dynamic $(LIBGCRYPT_LIBS)
-+rsyslogd_LDADD = ../grammar/libgrammar.la ../runtime/librsyslog.la $(ZLIB_LIBS) $(PTHREADS_LIBS) $(RSRT_LIBS) $(SOL_LIBS) $(LIBEE_LIBS) $(LIBLOGNORM_LIBS) $(LIBUUID_LIBS) $(LIBGCRYPT_LIBS)
-+rsyslogd_LDFLAGS = -export-dynamic
-
- EXTRA_DIST = $(man_MANS) \
- rsgtutil.rst \
-@@ -79,7 +78,6 @@
- bin_PROGRAMS += rscryutil
- rscryutil = rscryutil.c
- rscryutil_CPPFLAGS = -I../runtime $(RSRT_CFLAGS) $(LIBGCRYPT_CFLAGS)
--rscryutil_LDFLAGS = `libgcrypt-config --libs`
- rscryutil_LDADD = ../runtime/libgcry.la $(LIBGCRYPT_LIBS)
- rscryutil.1: rscryutil.rst
- $(AM_V_GEN) $(RST2MAN) $< $@
diff --git a/debian/patches/series b/debian/patches/series
index 9a46ee8..2113a56 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1,3 +1,2 @@
# Debian patches for rsyslog
01-dont_create_db.patch
-02-fix-non-libgcrypt-build.patch