diff options
author | Jeroen Roovers <jer@gentoo.org> | 2010-09-15 01:49:58 +0000 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2010-09-15 01:49:58 +0000 |
commit | 700cfaa30b5a03a16286d68df08c76adf8e1c034 (patch) | |
tree | 8c6f95a57c66c07281afe9eba33850c2f91f21e2 /net-analyzer/egressor/files | |
parent | Initial import (diff) | |
download | gentoo-2-700cfaa30b5a03a16286d68df08c76adf8e1c034.tar.gz gentoo-2-700cfaa30b5a03a16286d68df08c76adf8e1c034.tar.bz2 gentoo-2-700cfaa30b5a03a16286d68df08c76adf8e1c034.zip |
Respect LDFLAGS (bug #337322), CC. Fix HOMEPAGE and SRC_URI.
(Portage version: 2.2_rc81/cvs/Linux i686)
Diffstat (limited to 'net-analyzer/egressor/files')
-rw-r--r-- | net-analyzer/egressor/files/1.0-flags.patch | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/net-analyzer/egressor/files/1.0-flags.patch b/net-analyzer/egressor/files/1.0-flags.patch new file mode 100644 index 000000000000..2de1c04094be --- /dev/null +++ b/net-analyzer/egressor/files/1.0-flags.patch @@ -0,0 +1,23 @@ +diff -Naur a/client/Makefile b/client/Makefile +--- a/client/Makefile 2010-09-15 03:38:45.000000000 +0200 ++++ b/client/Makefile 2010-09-15 03:43:57.000000000 +0200 +@@ -5,8 +5,8 @@ + #---------------------------------------------------------------------- + + +-CC = gcc +-CFLAGS = -O3 -funroll-loops -fomit-frame-pointer -Wall -DMD=5 ++CC ?= gcc ++CFLAGS += -Wall -DMD=5 + #CFLAGS2 = -O -DMD=5 + OBJECTS = egressor.o md5c.o \ + +@@ -21,7 +21,7 @@ + + + egressor: egressor.o md5c.o +- $(CC) egressor.o $(LIBS) -o ./egressor ++ $(CC) $(CFLAGS) $(LDFLAGS) egressor.o $(LIBS) -o ./egressor + + md5c.o: global.h md5.h + $(CC) -c $(CFLAGS) md5c.c |