pkgsrc/mail/pine/patches/patch-aa
martti fa4a2e982a Updated to 4.43. Changes since 4.40:
*  Answered flag not set in some circumstances when replying
*  PC-Pine command line argument -passfile to change the name of the
   password file. This should be a fully-qualified filename.
*  Replying to a message may close the folder containing the message
*  Pine fails to compile in non-DEBUG mode.
*  PC-Pine crashes in some dialogs when run in Dialog Box mode.
*  Setup/Signature prefers literal-signature by default
*  Composer justify command handles nested quoting better
*  Increased efficiency for remote configurations (no temporary files)
*  New tokens SIZECOMMA (similar to 4.33 SIZE) and SIZENARROW for index-format
*  Select by size (thanks to Martin Gallwey)
*  New feature quell-content-id for working around Outlook XP problem
*  New PC-Pine feature quell-ssl-largeblocks for working around OS
   SSL-problems
*  Better color interoperability between PC-Pine and Unix Pine with
   16-color xterm
*  New PC-Pine dialog to aid in locating configuration file if none found
*  Save from local folder to simple name in remote collection fails
*  Crash when selecting folders by Properties (Unseen...) in local collection
*  Crash when talking to POP3 servers which have the EXPIRE capability
*  Crash when talking to SMTP server which offers STARTTLS
*  Crash when accessing remote config if there is a TLS failure
*  Crash when index-format includes SCORE token, a score rule includes
   an AllText pattern, and the folder being scored is remote
*  Delivery Status Notification (DSN) broken
*  Editing reply-indent-string was broken when using Windows dialog boxes
*  Entire folder is re-filtered when Save is typed and save-will-advance is set
2001-12-15 08:31:38 +00:00

35 lines
1.1 KiB
Text

$NetBSD: patch-aa,v 1.13 2001/12/15 08:31:38 martti Exp $
--- pine/makefile.gs5.orig Tue Oct 23 22:24:47 2001
+++ pine/makefile.gs5 Fri Dec 14 19:24:02 2001
@@ -49,7 +49,7 @@
MAKE= make
OPTIMIZE= # -O
PROFILE= # -pg
-DEBUG= -g -DDEBUG
+DEBUG= -DDEBUG # -g # XXX crashes on 'c'ompose w/o -DDEBUG
CCLIENTDIR= ../c-client
PICODIR= ../pico
@@ -71,9 +71,9 @@
# leaving out the UCB compatibility includes and libraries.
# LDCC= $(PICODIR)/cc5.sol
-STDLIBS= -ltermlib
-LOCLIBS= $(PICODIR)/libpico.a $(CCLIENTDIR)/c-client.a
-LIBS= $(LOCLIBS) $(LDAPLIBS) $(STDLIBS) \
+STDLIBS= -lssl -lcrypto -ltermlib
+LOCLIBS= -lpico -lc-client
+LIBS= -L$(PREFIX)/lib -Wl,-R$(PREFIX)/lib/ $(EXTRALIBES) $(LOCLIBS) $(LDAPLIBS) $(STDLIBS) \
`cat $(CCLIENTDIR)/LDFLAGS`
STDCFLAGS= -DSV4 -DSYSTYPE=\"GSO\" -DMOUSE
@@ -95,7 +95,7 @@
all: pine rpload rpdump
-pine: $(OFILES) $(LOCLIBS)
+pine: $(OFILES)
echo "char datestamp[]="\"`date`\"";" > date.c
echo "char hoststamp[]="\"`uname -n`\"";" >> date.c
$(LDCC) $(LDFLAGS) $(CFLAGS) -o pine $(OFILES) date.c $(LIBS)