summaryrefslogtreecommitdiff
path: root/archivers/zip
diff options
context:
space:
mode:
authorBrian Somers <brian@FreeBSD.org>1998-09-23 06:45:28 +0000
committerBrian Somers <brian@FreeBSD.org>1998-09-23 06:45:28 +0000
commit198d25ced9331783248e1de93b79ea65ba0ce50e (patch)
tree6b03784f6eda129e0a9573375f136fbc46f78e38 /archivers/zip
parentFixes for Krb4. (diff)
Remove previous elf patch.
Instead, change grep to egrep in configure so that it does what was intended. Ok'd by: smace & ache
Notes
Notes: svn path=/head/; revision=13355
Diffstat (limited to 'archivers/zip')
-rw-r--r--archivers/zip/files/patch-aa42
1 files changed, 11 insertions, 31 deletions
diff --git a/archivers/zip/files/patch-aa b/archivers/zip/files/patch-aa
index 70b4ab33b3b2..21b9b1edd603 100644
--- a/archivers/zip/files/patch-aa
+++ b/archivers/zip/files/patch-aa
@@ -1,31 +1,11 @@
---- unix/Makefile.orig Fri Oct 24 13:38:04 1997
-+++ unix/Makefile Thu Sep 17 22:25:33 1998
-@@ -44,6 +44,12 @@
- LFLAGS1 =
- LFLAGS2 = -s
-
-+.if ${PORTOBJFORMAT} == elf
-+ELFDEF = -D__ELF__
-+.else
-+ELFDEF =
-+.endif
-+
- # object file lists
- OBJZ = zip.o zipfile.o zipup.o fileio.o util.o globals.o crypt.o ttyio.o \
- unix.o crc32.o crctab.o
-@@ -81,13 +87,13 @@
- zipup.o: unix/zipup.h
-
- match.o: match.S
-- $(CPP) match.S > _match.s
-+ $(CPP) $(ELFDEF) match.S > _match.s
- $(AS) _match.s
- mv _match.o match.o
- rm -f _match.s
-
- crc_i386.o: crc_i386.S
-- $(CPP) crc_i386.S > crc_i386.s
-+ $(CPP) $(ELFDEF) crc_i386.S > crc_i386.s
- $(AS) crc_i386.s
- rm -f crc_i386.s
-
+--- unix/configure.orig Tue Sep 22 14:33:00 1998
++++ unix/configure Tue Sep 22 14:33:18 1998
+@@ -49,7 +49,7 @@
+ echo "int foo() { return 0;}" > conftest.c
+ $CC -c conftest.c >/dev/null 2>/dev/null
+ echo Check if compiler generates underlines
+- nm conftest.o | grep "(^|[^_])foo" >/dev/null 2>/dev/null
++ nm conftest.o | egrep "(^|[^_])foo" >/dev/null 2>/dev/null
+ [ $? -eq 0 ] && CPP="${CPP} -DNO_UNDERLINE"
+ if eval "$CPP crc_i386.S > _crc_i386.s 2>/dev/null"; then
+ if eval "$CC -c _crc_i386.s >/dev/null 2>/dev/null" && [ -f _crc_i386.o ]