diff options
author | Martin Matuska <mm@FreeBSD.org> | 2009-05-26 07:34:05 +0000 |
---|---|---|
committer | Martin Matuska <mm@FreeBSD.org> | 2009-05-26 07:34:05 +0000 |
commit | 2b556b1432770013deaea7347a2fd332d64ec462 (patch) | |
tree | 0db74673917670663d8c1135ac24aae5781c6194 /databases/luasql-mysql/files/patch-Makefile | |
parent | - Revert; previous commit was made based on a bad analysis (diff) |
LuaSQL is a simple interface from Lua to a DBMS. It enables a Lua
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/
Notes
Notes:
svn path=/head/; revision=234569
Diffstat (limited to 'databases/luasql-mysql/files/patch-Makefile')
-rw-r--r-- | databases/luasql-mysql/files/patch-Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/databases/luasql-mysql/files/patch-Makefile b/databases/luasql-mysql/files/patch-Makefile new file mode 100644 index 000000000000..2be6aea894fc --- /dev/null +++ b/databases/luasql-mysql/files/patch-Makefile @@ -0,0 +1,11 @@ +--- 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 |