diff options
author | mharo <mharo@FreeBSD.org> | 1999-04-14 13:27:27 +0800 |
---|---|---|
committer | mharo <mharo@FreeBSD.org> | 1999-04-14 13:27:27 +0800 |
commit | 2ef6b669ebd6831f3c2c6c3100c94eba70364966 (patch) | |
tree | bb1cb82a03989cfa6e9a17bb8017054d01804ca7 /ftp/greed/files | |
parent | c5f60bd5f9bbc27851232b51c61885765b6448cc (diff) | |
download | freebsd-ports-gnome-2ef6b669ebd6831f3c2c6c3100c94eba70364966.tar.gz freebsd-ports-gnome-2ef6b669ebd6831f3c2c6c3100c94eba70364966.tar.zst freebsd-ports-gnome-2ef6b669ebd6831f3c2c6c3100c94eba70364966.zip |
A fetch(1) like program that includes resume support.
PR: 11124
Submitted by: Chris Piazza cpiazza@home.net
Diffstat (limited to 'ftp/greed/files')
-rw-r--r-- | ftp/greed/files/patch-aa | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/ftp/greed/files/patch-aa b/ftp/greed/files/patch-aa new file mode 100644 index 000000000000..9f53cfaecdb8 --- /dev/null +++ b/ftp/greed/files/patch-aa @@ -0,0 +1,30 @@ +--- Makefile.orig Sat Apr 10 03:11:33 1999 ++++ Makefile Tue Apr 13 17:38:53 1999 +@@ -4,10 +4,10 @@ + + # Where to install binary and manpage on "make install": + +-PREFIX=/usr/local + BINDIR=$(PREFIX)/bin + MANDIR=$(PREFIX)/man + SECTION=1 ++FLAGS=${CFLAGS} + + ################################################### + ###### ###### +@@ -52,11 +52,11 @@ + #CFLAGS='-DI386_ASSEM -DREAL_IS_FLOAT -DLINUX -Wall -O2 -m486 -fomit-frame-pointer -funroll-all-loops -finline-functions -ffast-math -malign-loops=2 -malign-jumps=2 -malign-functions=2' + + freebsd: +- $(MAKE) CC=cc LDFLAGS= \ ++ $(MAKE) LDFLAGS= \ + OBJECTS= \ +- CFLAGS='-Wall -ansi -pedantic -O4 -m486 -fomit-frame-pointer \ +- -funroll-all-loops -ffast-math -DROT_I386 \ +- -DI386_ASSEM -DREAL_IS_FLOAT -DUSE_MMAP' \ ++ CFLAGS='-fomit-frame-pointer \ ++ -funroll-all-loops -ffast-math \ ++ -DREAL_IS_FLOAT -DUSE_MMAP ${FLAGS}' \ + greed + + solaris: |