diff options
author | Andrey A. Chernov <ache@FreeBSD.org> | 1997-05-19 13:01:11 +0000 |
---|---|---|
committer | Andrey A. Chernov <ache@FreeBSD.org> | 1997-05-19 13:01:11 +0000 |
commit | 5d9b41e9cf60bb8e524369edcc7af831aafe611a (patch) | |
tree | 40fa65f8cba77b77e2e5512f199cc3befa0efaef /mail/mutt-devel/files/patch-01 | |
parent | This is the official INDEX file for 2.2.2-RELEASE, which has 897 ports (diff) |
Fix problem with PGP patch
Add -lmytinfo to LIBS
Diffstat (limited to '')
-rw-r--r-- | mail/mutt-devel/files/patch-01 | 62 |
1 files changed, 45 insertions, 17 deletions
diff --git a/mail/mutt-devel/files/patch-01 b/mail/mutt-devel/files/patch-01 index 636181881511..ec137d95bb90 100644 --- a/mail/mutt-devel/files/patch-01 +++ b/mail/mutt-devel/files/patch-01 @@ -1,17 +1,45 @@ ---- Makefile.in.orig Mon Jan 27 18:15:59 1997 -+++ Makefile.in Wed Jan 29 07:23:40 1997 -@@ -72,10 +72,13 @@ - sendlib.c \ - url.c - --all: mutt -+all: mutt docs - - mutt: $(OBJS) $(REGEX) - $(CC) -o mutt $(OBJS) $(REGEX) $(LDFLAGS) $(LIBS) -+ -+docs: -+ cd doc && make fbsd - - install: mutt - $(srcdir)/mkinstalldirs $(bindir) +*** Makefile.in.orig Sat May 17 03:05:18 1997 +--- Makefile.in Mon May 19 15:41:18 1997 +*************** +*** 34,40 **** + XCPPFLAGS=-I. -I$(srcdir) @CPPFLAGS@ + CFLAGS=@CFLAGS@ -DSHAREDIR=\"$(sharedir)\" $(XCPPFLAGS) + LDFLAGS=@LDFLAGS@ +! LIBS=@LIBS@ + REGEX=@REGEX@ + OBJS= addrbook.o alias.o attach.o bind.o browser.o buffy.o color.o \ + commands.o \ +--- 34,40 ---- + XCPPFLAGS=-I. -I$(srcdir) @CPPFLAGS@ + CFLAGS=@CFLAGS@ -DSHAREDIR=\"$(sharedir)\" $(XCPPFLAGS) + LDFLAGS=@LDFLAGS@ +! LIBS=@LIBS@ -lmytinfo + REGEX=@REGEX@ + OBJS= addrbook.o alias.o attach.o bind.o browser.o buffy.o color.o \ + commands.o \ +*************** +*** 52,61 **** + EXCLUDE=config.h config.cache config.log config.status tags Makefile \ + rx/Makefile + +! all: mutt + + mutt: $(OBJS) $(REGEX) + $(CC) -o mutt $(OBJS) $(REGEX) $(LDFLAGS) $(LIBS) + + install: mutt + $(srcdir)/mkinstalldirs $(bindir) +--- 52,64 ---- + EXCLUDE=config.h config.cache config.log config.status tags Makefile \ + rx/Makefile + +! all: mutt docs + + mutt: $(OBJS) $(REGEX) + $(CC) -o mutt $(OBJS) $(REGEX) $(LDFLAGS) $(LIBS) ++ ++ docs: ++ cd doc && make fbsd + + install: mutt + $(srcdir)/mkinstalldirs $(bindir) |