From 499962029a94074ecd007a1be5f760337ff9ffbb Mon Sep 17 00:00:00 2001 From: "madmaxoft@gmail.com" Date: Sun, 7 Apr 2013 19:28:32 +0000 Subject: Added SQLite and LuaSQLite, Lua plugins can now use SQLite. git-svn-id: http://mc-server.googlecode.com/svn/trunk@1368 0a769ca7-a7f5-676a-18bf-c427514a06d6 --- GNUmakefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'GNUmakefile') diff --git a/GNUmakefile b/GNUmakefile index 43e0332ce..6e29f0a8b 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -41,7 +41,7 @@ ifeq ($(release),1) ################ CC_OPTIONS = -s -g -O3 -DNDEBUG CXX_OPTIONS = -s -g -O3 -DNDEBUG -LNK_OPTIONS = -lstdc++ -pthread -O3 +LNK_OPTIONS = -lstdc++ -ldl -pthread -O3 BUILDDIR = build/release/ else @@ -51,7 +51,7 @@ ifeq ($(profile),1) ################ CC_OPTIONS = -s -g -ggdb -O3 -pg -DNDEBUG CXX_OPTIONS = -s -g -ggdb -O3 -pg -DNDEBUG -LNK_OPTIONS = -lstdc++ -pthread -ggdb -O3 -pg +LNK_OPTIONS = -lstdc++ -ldl -pthread -ggdb -O3 -pg BUILDDIR = build/profile/ else @@ -61,7 +61,7 @@ ifeq ($(pedantic),1) ################ CC_OPTIONS = -s -g -ggdb -D_DEBUG -Wall -Wextra -pedantic -ansi -Wno-long-long CXX_OPTIONS = -s -g -ggdb -D_DEBUG -Wall -Wextra -pedantic -ansi -Wno-long-long -LNK_OPTIONS = -lstdc++ -pthread -ggdb +LNK_OPTIONS = -lstdc++ -ldl -pthread -ggdb BUILDDIR = build/pedantic/ else @@ -71,7 +71,7 @@ else ################ CC_OPTIONS = -s -ggdb -g -D_DEBUG -O3 CXX_OPTIONS = -s -ggdb -g -D_DEBUG -LNK_OPTIONS = -lstdc++ -pthread -g -ggdb +LNK_OPTIONS = -lstdc++ -ldl -pthread -g -ggdb BUILDDIR = build/debug/ endif endif -- cgit v1.2.3