diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2004-07-14 15:46:55 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2004-07-14 15:46:55 +0000 |
commit | d12909dc3eaaef80fb2671e3c2e39d3a2700749c (patch) | |
tree | 9a2ffc5a70d626829c1b3a99972ba1fe898b9282 /mail/mailsync/files/patch-Makefile | |
parent | FindMTU is a tool that performs IPv6 path MTU discovery. You can use it (diff) |
- Unset USE_GCC=2.95 and add patch to fix build with gcc 3.x
- Respect CFLAGS
- Portlint
PR: ports/69022
Submitted by: Andrey Slusar <vasallia@ukr.net>
Notes
Notes:
svn path=/head/; revision=113658
Diffstat (limited to 'mail/mailsync/files/patch-Makefile')
-rw-r--r-- | mail/mailsync/files/patch-Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/mail/mailsync/files/patch-Makefile b/mail/mailsync/files/patch-Makefile index 1a463d11bb57..9c43172f9eca 100644 --- a/mail/mailsync/files/patch-Makefile +++ b/mail/mailsync/files/patch-Makefile @@ -1,5 +1,5 @@ ---- Makefile.orig Thu Oct 24 16:03:07 2002 -+++ Makefile Wed Feb 26 23:39:48 2003 +--- Makefile.orig Thu Oct 24 17:03:07 2002 ++++ Makefile Wed Jul 14 04:02:48 2004 @@ -1,32 +1,32 @@ # compiling with g++-3 worked for me with the commented ## lines - tpo @@ -22,7 +22,8 @@ ##CC = g++-3.0 # flags for your compiler - CFLAGS = -g -O2 -Wall -I$(C) +-CFLAGS = -g -O2 -Wall -I$(C) ++CFLAGS += -Wall -fno-operator-names -I$(C) # required libraries -LDFLAGS = -lm -lssl -lgssapi_krb5 |