diff options
Diffstat (limited to 'mail/mboxgrep/files')
-rw-r--r-- | mail/mboxgrep/files/patch-Makefile.in | 14 | ||||
-rw-r--r-- | mail/mboxgrep/files/patch-wrap.h | 10 |
2 files changed, 24 insertions, 0 deletions
diff --git a/mail/mboxgrep/files/patch-Makefile.in b/mail/mboxgrep/files/patch-Makefile.in new file mode 100644 index 000000000000..892bf9545cf5 --- /dev/null +++ b/mail/mboxgrep/files/patch-Makefile.in @@ -0,0 +1,14 @@ +--- src/Makefile.in.orig Fri Oct 26 15:08:54 2001 ++++ src/Makefile.in Sun Oct 28 10:46:33 2001 +@@ -19,9 +19,9 @@ + + CC = @CC@ + OBJS = info.o main.o mh.o scan.o maildir.o mbox.o misc.o \ +- wrap.o ++ wrap.o getopt.o getopt1.o + SRCS = info.c main.c mh.c scan.c maildir.c mbox.c misc.c \ +- wrap.c ++ wrap.c getopt.c getopt1.c + TARGET = mboxgrep + CFLAGS = @CFLAGS@ + LIBS = @LIBS@ diff --git a/mail/mboxgrep/files/patch-wrap.h b/mail/mboxgrep/files/patch-wrap.h new file mode 100644 index 000000000000..f5432e809d5d --- /dev/null +++ b/mail/mboxgrep/files/patch-wrap.h @@ -0,0 +1,10 @@ +--- src/wrap.h.orig Fri Oct 26 15:08:54 2001 ++++ src/wrap.h Sun Oct 28 11:06:48 2001 +@@ -28,6 +28,7 @@ + #include <stdio.h> + #include <stdlib.h> + #include <dirent.h> ++#include <unistd.h> + + int m_open(const char *pathname, int flags, mode_t mode); + |