]> git.ipfire.org Git - people/ms/dma.git/commitdiff
Honor LDFLAGS if specified in the environment.
authorPeter Pentchev <roam@ringlet.net>
Fri, 18 Jun 2010 14:49:23 +0000 (14:49 +0000)
committerPeter Pentchev <roam@ringlet.net>
Fri, 18 Jun 2010 14:49:23 +0000 (14:49 +0000)
changelog
patches/30-ldflags.patch [new file with mode: 0644]
patches/series

index 3f4d955662e7eac4f224b9f52d779e4f865aa685..0f914c1712ffa08550da002fdbc22239fe15a9d4 100644 (file)
--- a/changelog
+++ b/changelog
@@ -24,6 +24,7 @@ dma (0.0.2010.06.17-1) UNRELEASED; urgency=low
     - add the 28-valid-recipient patch to fix parsing recipients out of
       the message body
     - add the 29-double-free patch to fix a double-free error
+    - add the 30-ldflags patch to honor LDFLAGS if specified
     - refresh the 09-typos, 17-mailname, 23-dirent-d_type, and
       25-unsupported-starttls patches
     - teach the dbounce-simple-safecat handler about the M*/Q* spool
diff --git a/patches/30-ldflags.patch b/patches/30-ldflags.patch
new file mode 100644 (file)
index 0000000..95885b4
--- /dev/null
@@ -0,0 +1,15 @@
+Description: Honor LDFLAGS if specified in the environment.
+ I'll forward this patch as soon as I catch up with the dma upstream.
+Origin: other: http://svn.ringlet.net/svn/ringlet/mail/dma/
+Forwarded: no
+Author: Peter Pentchev <roam@ringlet.net>
+Last-Update: 2010-06-18
+
+--- a/Makefile.plain
++++ b/Makefile.plain
+@@ -48,4 +48,4 @@
+       ${CC} ${CFLAGS} ${CPPFLAGS} -include dfcompat.h -o $@ -c $<
+ dma: ${OBJS}
+-      ${CC} ${LDADD} -o $@ ${OBJS}
++      ${CC} ${LDFLAGS} ${LDADD} -o $@ ${OBJS}
index 6fc138b41d27df68f9cde907f8df47d39d3e265d..ed3011c8facf69ed16927c7c924da5876fd9e157 100644 (file)
@@ -12,3 +12,4 @@
 27-int-size.patch
 28-valid-recipient.patch
 29-double-free.patch
+30-ldflags.patch