diff options
author | Adam Weinberger <adamw@FreeBSD.org> | 2014-07-28 15:51:59 +0000 |
---|---|---|
committer | Adam Weinberger <adamw@FreeBSD.org> | 2014-07-28 15:51:59 +0000 |
commit | 94fc3edbb6fa1ed9320a80a0b030a511e991c94f (patch) | |
tree | c1caf082123c76b0ce8dff00101329af71b9c7e3 /databases/dbf2mysql/files/patch-Makefile | |
parent | - Update to 2014.07.27 (diff) |
Rename databases/ patch-xy patches to reflect the files they modify.
Notes
Notes:
svn path=/head/; revision=363190
Diffstat (limited to 'databases/dbf2mysql/files/patch-Makefile')
-rw-r--r-- | databases/dbf2mysql/files/patch-Makefile | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/databases/dbf2mysql/files/patch-Makefile b/databases/dbf2mysql/files/patch-Makefile new file mode 100644 index 000000000000..e65f0edb2616 --- /dev/null +++ b/databases/dbf2mysql/files/patch-Makefile @@ -0,0 +1,35 @@ +--- 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 + + # set this to your install-program (what does Solaris have + # in /usr/sbin/install? SYSV 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=-g -Wall -pedantic -include /usr/include/mpatrol.h + #CFLAGS=-g -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/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) |