diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2001-04-30 00:16:03 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2001-04-30 00:16:03 +0000 |
commit | d5ef8dad3fec4f816aa2696d7948964785eabcca (patch) | |
tree | 6baf81d73ea3b063e4658c627684123e624ef3a5 /mail/pop3gwd | |
parent | e69be5bfe22802e3f9bcb0908058e7f2d7772924 (diff) |
Don't hard-code -O2; respect CC and CFLAGS
Notes
Notes:
svn path=/head/; revision=42053
Diffstat (limited to 'mail/pop3gwd')
-rw-r--r-- | mail/pop3gwd/files/patch-makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/mail/pop3gwd/files/patch-makefile b/mail/pop3gwd/files/patch-makefile index 878d98111a8f..58b205925ac0 100644 --- a/mail/pop3gwd/files/patch-makefile +++ b/mail/pop3gwd/files/patch-makefile @@ -4,9 +4,10 @@ @@ -3,22 +3,23 @@ - CC=gcc +-CC=gcc ++#CC=gcc -CFLAGS= -O2 -+CFLAGS= -O2 -Wall ++CFLAGS+= -Wall MODULES=main.o parse_cmd_line.o get_remote_data.o connect_login.o io.o relay_data.o DOCS=README COPYING HISTORY -INSTALL_DIR=/usr/sbin |