diff options
author | grant <grant@pkgsrc.org> | 2004-06-26 19:06:04 +0000 |
---|---|---|
committer | grant <grant@pkgsrc.org> | 2004-06-26 19:06:04 +0000 |
commit | fbe048167f932cdb3f6fa5c60f8478344d4689e8 (patch) | |
tree | 7b06fe8549cec0b429e1916e6f74aaf0990cf872 /security/john/patches | |
parent | 43c4381b9b76b4ba7ddf719e2ed3f285c2749c7b (diff) | |
download | pkgsrc-fbe048167f932cdb3f6fa5c60f8478344d4689e8.tar.gz |
don't override CC, LD, etc.
Diffstat (limited to 'security/john/patches')
-rw-r--r-- | security/john/patches/patch-aa | 25 |
1 files changed, 20 insertions, 5 deletions
diff --git a/security/john/patches/patch-aa b/security/john/patches/patch-aa index a25b8a94b73..1055543a596 100644 --- a/security/john/patches/patch-aa +++ b/security/john/patches/patch-aa @@ -1,17 +1,32 @@ -$NetBSD: patch-aa,v 1.1 2003/11/18 14:03:14 xtraeme Exp $ +$NetBSD: patch-aa,v 1.2 2004/06/26 19:06:04 grant Exp $ ---- Makefile.orig 2003-11-18 14:51:45.000000000 +0100 -+++ Makefile 2003-11-18 14:52:31.000000000 +0100 -@@ -13,11 +13,11 @@ +--- Makefile.orig 1998-12-03 11:29:50.000000000 +1100 ++++ Makefile +@@ -3,21 +3,21 @@ + # Copyright (c) 1996-98 by Solar Designer + # + +-CPP = gcc +-CC = gcc +-AS = gcc +-LD = gcc ++#CPP = gcc ++#CC = gcc ++AS = $(CC) ++LD = $(CC) + CP = cp + LN = ln -sf + RM = rm -f SED = sed NULL = /dev/null CPPFLAGS = -E -CFLAGS = -c -Wall -O2 -fomit-frame-pointer +CFLAGS += -c ASFLAGS = -c - LDFLAGS = -s +-LDFLAGS = -s -OPT_NORMAL = -funroll-loops -OPT_INLINE = -finline-functions ++LDFLAGS += -s +OPT_NORMAL = +OPT_INLINE = |