summaryrefslogtreecommitdiff
path: root/databases/dbf2mysql/files/patch-aa
diff options
context:
space:
mode:
authorChris D. Faulhaber <jedgar@FreeBSD.org>2001-02-07 18:26:11 +0000
committerChris D. Faulhaber <jedgar@FreeBSD.org>2001-02-07 18:26:11 +0000
commit6abf0ab008dd378e8e8d5c6c3a63ad2eeac27a30 (patch)
tree134e37990eb852bf2e9fc5655f4c658d6f468e43 /databases/dbf2mysql/files/patch-aa
parentUpgrade with Amos Gouaux's version of the Syslog module which was (diff)
Update port to 1.14
Diffstat (limited to '')
-rw-r--r--databases/dbf2mysql/files/patch-aa42
1 files changed, 17 insertions, 25 deletions
diff --git a/databases/dbf2mysql/files/patch-aa b/databases/dbf2mysql/files/patch-aa
index 2f1a9345ab38..e65f0edb2616 100644
--- a/databases/dbf2mysql/files/patch-aa
+++ b/databases/dbf2mysql/files/patch-aa
@@ -1,43 +1,35 @@
---- Makefile.orig Thu Aug 26 09:49:08 1999
-+++ Makefile Mon Oct 4 19:01:45 1999
-@@ -2,17 +2,17 @@
+--- Makefile.orig Fri Jul 7 20:19:19 2000
++++ Makefile Wed Feb 7 13:07:42 2001
+@@ -2,27 +2,27 @@
# Maarten Boekhold (boekhold@cindy.et.tudelft.nl) 1995
# Set this to your C-compiler
-CC=gcc
-+#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
+ INSTALL=/usr/bin/install
#AR=/usr/bin/ar
-AR=ar
-+#AR=ar
++AR?=ar
# Set this to whatever your compiler accepts. Nothing special is needed
+ #CFLAGS=-g -Wall -pedantic -include /usr/include/mpatrol.h
+ #CFLAGS=-g -Wall
-CFLAGS=-O2 -Wall
-+#CFLAGS=-O2 -Wall
++CFLAGS?=-O2 -Wall
+
+ # Set this to make smaller binaries
+ #STRIP=
+ STRIP=-s
# Set this to your MySQL installation-path
- MYSQLINC=-I/usr/local/mysql/include
-@@ -20,7 +20,7 @@
+-MYSQLINC=-I/usr/include/mysql
+-MYSQLLIB=-L/usr/lib/mysql
++MYSQLINC=-I${PREFIX}/include/mysql
++MYSQLLIB=-L${PREFIX}/lib/mysql
# 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 \