diff options
author | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2001-07-16 04:31:24 +0000 |
---|---|---|
committer | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2001-07-16 04:31:24 +0000 |
commit | 7d8a8dfbdd61b8b0b3fc9388d119e2883941d27f (patch) | |
tree | a9c30c0952fc00036d5feb0f92bce24a481939c7 /security/mdcrack/files | |
parent | 9400f4d082811ad0a3a146d8e8c2455037391154 (diff) |
Notes
Diffstat (limited to 'security/mdcrack/files')
-rw-r--r-- | security/mdcrack/files/patch-Makefile | 43 |
1 files changed, 20 insertions, 23 deletions
diff --git a/security/mdcrack/files/patch-Makefile b/security/mdcrack/files/patch-Makefile index 8c19c88a6701..e70fbc2a11d1 100644 --- a/security/mdcrack/files/patch-Makefile +++ b/security/mdcrack/files/patch-Makefile @@ -1,33 +1,30 @@ ---- Makefile.orig Mon Apr 9 10:12:24 2001 -+++ Makefile Fri Apr 20 01:04:09 2001 -@@ -9,7 +9,6 @@ - # Security, Inc. MD5 Message-Digest Algorithm - # +--- Makefile.orig Mon Jul 16 12:07:16 2001 ++++ Makefile Mon Jul 16 12:10:33 2001 +@@ -10,7 +10,6 @@ + + -CC = gcc # Please set RESUME_FILE and choose a secure place for the resume file # before using mdcrack as root. -@@ -45,12 +44,10 @@ +@@ -47,7 +46,7 @@ BLOCK=-DBLOCKSIZE=50 + #full optimization +-CFLAGS = -O3 -fforce-addr -funroll-loops -fomit-frame-pointer -ffast-math ++CFLAGS += -fforce-addr -funroll-loops -fomit-frame-pointer -ffast-math --CFLAGS = -O3 -fforce-addr -funroll-loops - - # static linkage will suppress a little overhead due to obj search/mountage. - # useless for big sessions. - --LDFLAGS = -static - - mdcrack: md5c.o mdcrack.o stats.o errors.o - $(CC) $(LDFLAGS) -o mdcrack md5c.o mdcrack.o stats.o errors.o -@@ -80,7 +77,7 @@ - rm -f *.o mdcrack - install: -- @echo -e "\nInstalling mdcrack in /usr/sbin/mdcrack\n" -- cp ./mdcrack /usr/sbin/mdcrack -+ @echo -e "\nInstalling mdcrack in ${PREFIX}/bin/mdcrack\n" -+ cp ./mdcrack ${PREFIX}/bin/mdcrack - @echo -e "\nok.\n" +@@ -284,8 +283,8 @@ + install: + @make default + @echo +- @echo "Installing mdcrack in /usr/sbin/mdcrack" +- cp bin/mdcrack /usr/sbin/mdcrack ++ @echo "Installing mdcrack in ${PREFIX}/bin/mdcrack" ++ cp bin/mdcrack ${PREFIX}/bin/mdcrack + @echo + @echo "ok." + @echo |