summaryrefslogtreecommitdiff
path: root/package/procmail/patches/patch-Makefile_new
diff options
context:
space:
mode:
Diffstat (limited to 'package/procmail/patches/patch-Makefile_new')
-rw-r--r--package/procmail/patches/patch-Makefile_new19
1 files changed, 19 insertions, 0 deletions
diff --git a/package/procmail/patches/patch-Makefile_new b/package/procmail/patches/patch-Makefile_new
new file mode 100644
index 000000000..695c46873
--- /dev/null
+++ b/package/procmail/patches/patch-Makefile_new
@@ -0,0 +1,19 @@
+--- procmail-3.22.orig/Makefile.new 1970-01-01 00:00:00.000000000 +0100
++++ procmail-3.22/Makefile.new 2009-06-04 22:43:04.000000000 +0200
+@@ -0,0 +1,16 @@
++PM_OBJ=cstdio.o common.o exopen.o goodies.o locking.o \
++ mailfold.o foldinfo.o misc.o pipes.o regexp.o robust.o \
++ sublib.o acommon.o mcommon.o lastdirsep.o authenticate.o \
++ lmtp.o memblk.o variables.o from.o comsat.o
++
++FM_OBJ=common.o fields.o formisc.o sublib.o ecommon.o \
++ acommon.o
++
++all: procmail formail
++
++procmail: procmail.o $(PM_OBJ)
++ $(CC) $(CFLAGS) $@.o $(PM_OBJ) -o $@ $(LDFLAGS)
++
++formail: formail.o $(FM_OBJ)
++ $(CC) $(CFLAGS) $@.o $(FM_OBJ) -o $@ $(LDFLAGS)
++