diff options
author | Chris D. Faulhaber <jedgar@FreeBSD.org> | 2000-02-19 13:44:07 +0000 |
---|---|---|
committer | Chris D. Faulhaber <jedgar@FreeBSD.org> | 2000-02-19 13:44:07 +0000 |
commit | f8dcccd9a101be79a935ce252c67a93491a12cb7 (patch) | |
tree | 5414d7ab64602fff130b268d260c4a4b9c2e8488 /mail/popa3d | |
parent | db18664186bc2d8c4b7784dd9a21eae683a95de9 (diff) | |
download | ports-f8dcccd9a101be79a935ce252c67a93491a12cb7.tar.gz ports-f8dcccd9a101be79a935ce252c67a93491a12cb7.zip |
Make port respect CFLAGS
Notes
Notes:
svn path=/head/; revision=26008
Diffstat (limited to 'mail/popa3d')
-rw-r--r-- | mail/popa3d/files/patch-ab | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/mail/popa3d/files/patch-ab b/mail/popa3d/files/patch-ab index fa30f9236e90..e70979c30661 100644 --- a/mail/popa3d/files/patch-ab +++ b/mail/popa3d/files/patch-ab @@ -1,13 +1,14 @@ ---- Makefile.orig Tue Feb 1 06:56:46 2000 -+++ Makefile Sun Feb 6 13:31:49 2000 +--- Makefile.orig Mon Jan 31 22:56:46 2000 ++++ Makefile Sat Feb 19 08:43:33 2000 @@ -1,9 +1,9 @@ -CC = gcc +CC?= gcc LD = gcc RM = rm -f - CFLAGS = -c -Wall -O2 -fomit-frame-pointer +-CFLAGS = -c -Wall -O2 -fomit-frame-pointer -LDFLAGS = -s -#LDFLAGS = -s -lcrypt ++CFLAGS+= -c -Wall +#LDFLAGS = -s +LDFLAGS = -s -lcrypt |