1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-01 22:05:08 +00:00
freebsd-ports/databases/dbf2mysql/files/patch-aa
Chris Piazza 8f82bcdb97 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
1999-10-05 16:06:21 +00:00

44 lines
1.0 KiB
Plaintext

--- Makefile.orig Thu Aug 26 09:49:08 1999
+++ Makefile Mon Oct 4 19:01:45 1999
@@ -2,17 +2,17 @@
# Maarten Boekhold (boekhold@cindy.et.tudelft.nl) 1995
# Set this to your C-compiler
-CC=gcc
+#CC=gcc
# set this to your install-program (what does Solaris have
# in /usr/sbin/install? SYSV install?)
-INSTALL=/usr/bin/install
+#INSTALL=/usr/bin/install
#AR=/usr/bin/ar
-AR=ar
+#AR=ar
# Set this to whatever your compiler accepts. Nothing special is needed
-CFLAGS=-O2 -Wall
+#CFLAGS=-O2 -Wall
# Set this to your MySQL installation-path
MYSQLINC=-I/usr/local/mysql/include
@@ -20,7 +20,7 @@
# Set this to where you want the binary (no man-page yet, don't know
# how to write them)
-INSTALLDIR=/usr/local/bin
+#INSTALLDIR=/usr/local/bin
# 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 \