Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 242149 Details for
Bug 331877
app-crypt/rainbowcrack does not respect LDFLAGS
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
New makefile patch
rainbowcrack-1.2-makefile.patch (text/plain), 1.40 KB, created by
Dane Smith (RETIRED)
on 2010-08-09 21:27:51 UTC
(
hide
)
Description:
New makefile patch
Filename:
MIME Type:
Creator:
Dane Smith (RETIRED)
Created:
2010-08-09 21:27:51 UTC
Size:
1.40 KB
patch
obsolete
>--- makefile.linux 2003-11-16 22:38:20.000000000 -0500 >+++ Makefile 2010-08-09 13:10:59.000000000 -0400 >@@ -1,14 +1,18 @@ >+OBJS = Public.o ChainWalkContext.o ChainWalkSet.o CrackEngine.o HashAlgorithm.o HashSet.o HashRoutine.o MemoryPool.o RainbowCrack.o RainbowTableDump.o RainbowTableGenerate.o RainbowTableSort.o > > all: rtgen rtdump rtsort rcrack > >-rtgen: >- g++ Public.cpp ChainWalkContext.cpp HashAlgorithm.cpp HashRoutine.cpp RainbowTableGenerate.cpp -lssl -O3 -o rtgen >+rtgen: $(OBJS) >+ $(CXX) -lssl -lcrypto $(LDFLAGS) Public.o ChainWalkContext.o HashAlgorithm.o HashRoutine.o RainbowTableGenerate.o -o rtgen > >-rtdump: >- g++ Public.cpp ChainWalkContext.cpp HashAlgorithm.cpp HashRoutine.cpp RainbowTableDump.cpp -lssl -o rtdump >+rtdump: $(OBJS) >+ $(CXX) -lssl -lcrypto $(LDFLAGS) Public.o ChainWalkContext.o HashAlgorithm.o HashRoutine.o RainbowTableDump.o -o rtdump > >-rtsort: >- g++ Public.cpp RainbowTableSort.cpp -o rtsort >+rtsort: $(OBJS) >+ $(CXX) $(LDFLAGS) Public.o RainbowTableSort.o -o rtsort > >-rcrack: >- g++ Public.cpp ChainWalkContext.cpp HashAlgorithm.cpp HashRoutine.cpp HashSet.cpp MemoryPool.cpp ChainWalkSet.cpp CrackEngine.cpp RainbowCrack.cpp -lssl -O3 -o rcrack >+rcrack: $(OBJS) >+ $(CXX) -lssl -lcrypto $(LDFLAGS) Public.o ChainWalkContext.o HashAlgorithm.o HashRoutine.o HashSet.o MemoryPool.o ChainWalkSet.o CrackEngine.o RainbowCrack.o -o rcrack >+ >+clean: >+ rm -f $(OBJS) rtgen rtdump rtsort rcrack
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 331877
:
242085
|
242147
|
242149
|
242151
|
242371