Gentoo Archives: gentoo-commits

From: "Michael Weber (xmw)" <xmw@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-mail/fdm/files: fdm-1.5-GNUmakefile.patch fdm-1.6-GNUmakefile.patch
Date: Sun, 05 Sep 2010 22:50:34
Message-Id: 20100905225026.B859A20051@flycatcher.gentoo.org
1 xmw 10/09/05 22:50:26
2
3 Added: fdm-1.5-GNUmakefile.patch fdm-1.6-GNUmakefile.patch
4 Log:
5 Initial import, fixes bug #163496,
6 (Portage version: 2.1.8.3/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.1 net-mail/fdm/files/fdm-1.5-GNUmakefile.patch
10
11 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/fdm/files/fdm-1.5-GNUmakefile.patch?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/fdm/files/fdm-1.5-GNUmakefile.patch?rev=1.1&content-type=text/plain
13
14 Index: fdm-1.5-GNUmakefile.patch
15 ===================================================================
16 --- /tmp/GNUmakefile 2010-09-06 00:39:07.912999999 +0200
17 +++ /var/tmp/portage/net-mail/fdm-1.5/work/fdm-1.5/GNUmakefile 2010-09-06 00:39:16.896999998 +0200
18 @@ -89,7 +89,7 @@
19 all: fdm
20
21 $(PROG): $(OBJS)
22 - $(CC) $(LDFLAGS) $(LIBS) -o $@ $+
23 + $(CC) $(LDFLAGS) -o $@ $+ $(LIBS)
24
25 depend: $(SRCS)
26 $(CC) $(CPPFLAGS) -MM $(SRCS) > .depend
27
28
29
30 1.1 net-mail/fdm/files/fdm-1.6-GNUmakefile.patch
31
32 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/fdm/files/fdm-1.6-GNUmakefile.patch?rev=1.1&view=markup
33 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-mail/fdm/files/fdm-1.6-GNUmakefile.patch?rev=1.1&content-type=text/plain
34
35 Index: fdm-1.6-GNUmakefile.patch
36 ===================================================================
37 --- /tmp/GNUmakefile 2010-09-06 00:35:53.502999999 +0200
38 +++ /var/tmp/portage/net-mail/fdm-1.6/work/fdm-1.6/GNUmakefile 2010-09-06 00:36:01.059000000 +0200
39 @@ -16,7 +16,7 @@
40 CC= gcc
41
42 INCDIRS= -I$(PREFIX)/include
43 -LDFLAGS= -L$(PREFIX)/lib
44 +LDFLAGS+= -L$(PREFIX)/lib
45
46 ifeq ($(shell uname),SunOS)
47 YACC= yacc
48 @@ -89,7 +89,7 @@
49
50 ifdef COURIER
51 CFLAGS+= -DLOOKUP_COURIER
52 -LIBS+= -lcourierauth
53 +LIBS+= -L/usr/lib64/courier-authlib -lcourierauth
54 endif
55
56 ifdef PCRE
57 @@ -104,7 +104,7 @@
58 all: fdm
59
60 $(PROG): $(OBJS)
61 - $(CC) $(LDFLAGS) $(LIBS) -o $@ $+
62 + $(CC) $(LDFLAGS) -o $@ $+ $(LIBS)
63
64 depend: $(SRCS)
65 $(CC) $(CPPFLAGS) -MM $(SRCS) > .depend