summaryrefslogtreecommitdiff
path: root/archivers/zip/files
diff options
context:
space:
mode:
authorScott Mace <smace@FreeBSD.org>1998-09-22 16:11:07 +0000
committerScott Mace <smace@FreeBSD.org>1998-09-22 16:11:07 +0000
commitbdc165e0ceb90e2f2b80aedd1986339f6e1f6815 (patch)
tree8123cf07ab0b100a65acf955fdcf425276489a4b /archivers/zip/files
parentConvert esound to elf. (diff)
Support ELF.
1. Invoke prefixing of external symbols in assembly code functions via __ELF__.
Notes
Notes: svn path=/head/; revision=13313
Diffstat (limited to 'archivers/zip/files')
-rw-r--r--archivers/zip/files/patch-aa31
1 files changed, 31 insertions, 0 deletions
diff --git a/archivers/zip/files/patch-aa b/archivers/zip/files/patch-aa
new file mode 100644
index 000000000000..70b4ab33b3b2
--- /dev/null
+++ b/archivers/zip/files/patch-aa
@@ -0,0 +1,31 @@
+--- 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
+