mirror of
https://git.freebsd.org/ports.git
synced 2025-06-07 22:00:31 -04:00
program to: * Connect to ODBC, ADO, Oracle, MySQL, SQLite and PostgreSQL databases; * Execute arbitrary SQL statements; * Retrieve results in a row-by-row cursor fashion. WWW: http://www.keplerproject.org/luasql/
11 lines
444 B
Text
11 lines
444 B
Text
--- Makefile.orig 2007-10-29 22:44:54.000000000 +0100
|
|
+++ Makefile 2009-05-25 23:14:26.604465716 +0200
|
|
@@ -24,7 +24,7 @@
|
|
lib: src/$(LIBNAME)
|
|
|
|
src/$(LIBNAME): $(OBJS)
|
|
- export MACOSX_DEPLOYMENT_TARGET="10.3"; $(CC) $(CFLAGS) -o $@ $(LIB_OPTION) $(OBJS) $(DRIVER_LIBS)
|
|
+ $(LD) $(LDFLAGS) -o $@ $(LIB_OPTION) $(OBJS) $(DRIVER_LIBS)
|
|
|
|
$(COMPAT_DIR)/compat-5.1.o: $(COMPAT_DIR)/compat-5.1.c
|
|
$(CC) -c $(CFLAGS) -o $@ $(COMPAT_DIR)/compat-5.1.c
|