summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Baumann <Andreas.Baumann@eurospider.com>2010-09-03 15:31:45 +0200
committerAndreas Baumann <Andreas.Baumann@eurospider.com>2010-09-03 15:31:45 +0200
commitc14099ce9433cf59fc0488267d9e0e64f92fba77 (patch)
treebb65007ca95245af3601232b03e56be76985c68b
parent945f4da2ea2988aaa28d91d6541921e76a637499 (diff)
downloadsqlitexx-c14099ce9433cf59fc0488267d9e0e64f92fba77.tar.gz
sqlitexx-c14099ce9433cf59fc0488267d9e0e64f92fba77.tar.bz2
no -L/usr/lib or -I/usr/include, they are standard anyway and specifying
them results in build problems on for instance 64-bit Centos
-rw-r--r--makefiles/gmake/platform.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/makefiles/gmake/platform.mk b/makefiles/gmake/platform.mk
index 452c9e1..ae37e83 100644
--- a/makefiles/gmake/platform.mk
+++ b/makefiles/gmake/platform.mk
@@ -197,8 +197,8 @@ PLATFORM_COMPILE_FLAGS += $(INCLUDE_FLAGS_NET)
# the GNU internationalization support is sometimes in separate libarries
ifeq "$(PLATFORM)" "LINUX"
-INCLUDE_FLAGS_SQLITE3 = -I/usr/include
-LDFLAGS_SQLITE3 = -L/usr/lib
+INCLUDE_FLAGS_SQLITE3 =
+LDFLAGS_SQLITE3 =
LIBS_SQLITE3 = -lsqlite3
endif