summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2008-08-16 01:14:13 +0000
committerMike Frysinger <vapier@gentoo.org>2008-08-16 01:14:13 +0000
commita21fb4e5441c75f30a959ff21ec2bb5308a28faf (patch)
tree519a3f8b45114a44ebbb8a7d1ff03029080386da /app-crypt/pdfcrack/files
parentVersion bump. (diff)
downloadhistorical-a21fb4e5441c75f30a959ff21ec2bb5308a28faf.tar.gz
historical-a21fb4e5441c75f30a959ff21ec2bb5308a28faf.tar.bz2
historical-a21fb4e5441c75f30a959ff21ec2bb5308a28faf.zip
old
Diffstat (limited to 'app-crypt/pdfcrack/files')
-rw-r--r--app-crypt/pdfcrack/files/pdfcrack-0.9-build.patch27
1 files changed, 0 insertions, 27 deletions
diff --git a/app-crypt/pdfcrack/files/pdfcrack-0.9-build.patch b/app-crypt/pdfcrack/files/pdfcrack-0.9-build.patch
deleted file mode 100644
index 4dba6d9341b2..000000000000
--- a/app-crypt/pdfcrack/files/pdfcrack-0.9-build.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-just use implicit rules so correct variables get used
-
---- Makefile
-+++ Makefile
-@@ -1,20 +1,13 @@
--CFLAGS= -Wall -Wshadow -Wwrite-strings -Wsign-compare -Wfloat-equal \
-+CFLAGS+= -Wall -Wshadow -Wwrite-strings -Wsign-compare -Wfloat-equal \
- -Wconversion -Wmissing-noreturn -Wbad-function-cast \
-- -Wmissing-prototypes -Winline -Wredundant-decls -O3
-+ -Wmissing-prototypes -Winline -Wredundant-decls
-
- all: pdfcrack
-
- pdfcrack: main.o rc4.o md5.o pdfcrack.o pdfparser.o passwords.o common.o \
- benchmark.o
-- gcc $(CFLAGS) -o $@ $+
-- strip $@
-
- pdfreader: pdfparser.o pdfreader.o common.o
-- gcc $(CFLAGS) -o $@ $+
-- strip $@
-
- clean:
- rm -f pdfcrack pdfreader testreader *.o
--
--%.o: %.c
-- gcc $(CFLAGS) -c -o $@ $+