aboutsummaryrefslogtreecommitdiff
path: root/databases/dbf2mysql
diff options
context:
space:
mode:
authorChris Piazza <cpiazza@FreeBSD.org>1999-10-05 16:06:21 +0000
committerChris Piazza <cpiazza@FreeBSD.org>1999-10-05 16:06:21 +0000
commit8f82bcdb978145aab30a4831bc7f95fff7f0eac2 (patch)
tree80128aa0794f753fcf6a6ec75da2f94dde6755f1 /databases/dbf2mysql
parentd37743a06fd10c652274be40e5883b41c334435a (diff)
downloadports-8f82bcdb978145aab30a4831bc7f95fff7f0eac2.tar.gz
ports-8f82bcdb978145aab30a4831bc7f95fff7f0eac2.zip
For backwards compatibility with FreeBSD 2.2.x due to it's
(apparent) lack of 's' support in ar. change: ar rcs libdbf.a ... to: ar rc libdbf.a ... ranlib libdbf.a PR: 14139 Submitted by: maintainer
Notes
Notes: svn path=/head/; revision=22174
Diffstat (limited to 'databases/dbf2mysql')
-rw-r--r--databases/dbf2mysql/files/patch-aa12
1 files changed, 11 insertions, 1 deletions
diff --git a/databases/dbf2mysql/files/patch-aa b/databases/dbf2mysql/files/patch-aa
index 60d4cfb1153c..2f1a9345ab38 100644
--- a/databases/dbf2mysql/files/patch-aa
+++ b/databases/dbf2mysql/files/patch-aa
@@ -1,5 +1,5 @@
--- Makefile.orig Thu Aug 26 09:49:08 1999
-+++ Makefile Sat Oct 2 23:19:17 1999
++++ Makefile Mon Oct 4 19:01:45 1999
@@ -2,17 +2,17 @@
# Maarten Boekhold (boekhold@cindy.et.tudelft.nl) 1995
@@ -31,3 +31,13 @@
# Set this if your system needs extra libraries
#
+@@ -42,7 +42,8 @@
+ all: dbf2mysql mysql2dbf
+
+ libdbf.a: dbf.o endian.o
+- $(AR) rcs libdbf.a dbf.o endian.o
++ $(AR) rc libdbf.a dbf.o endian.o
++ $(RANLIB) libdbf.a
+
+ dbf2mysql: dbf2mysql.o libdbf.a
+ $(CC) $(CFLAGS) -s -L. $(MYSQLLIB) -o $@ dbf2mysql.o -ldbf \