diff options
author | Philipp Sehmisch <tmw@crushnet.org> | 2008-04-01 01:34:29 +0000 |
---|---|---|
committer | Philipp Sehmisch <tmw@crushnet.org> | 2008-04-01 01:34:29 +0000 |
commit | 67ae268b0a4411d6b00b07a3ee2b0104fdb98925 (patch) | |
tree | 69d6ee316837e8a019bd99499e99b26dd7c0c96e /tools/tmxcopy | |
parent | 27dadee08e63f5392c8ec2b24d6733b4e306307e (diff) | |
download | mana-client-67ae268b0a4411d6b00b07a3ee2b0104fdb98925.tar.gz mana-client-67ae268b0a4411d6b00b07a3ee2b0104fdb98925.tar.bz2 mana-client-67ae268b0a4411d6b00b07a3ee2b0104fdb98925.tar.xz mana-client-67ae268b0a4411d6b00b07a3ee2b0104fdb98925.zip |
compilation fixes suggested by peavey.
Diffstat (limited to 'tools/tmxcopy')
-rw-r--r-- | tools/tmxcopy/makefile | 2 | ||||
-rw-r--r-- | tools/tmxcopy/zlibutils.cpp | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/tools/tmxcopy/makefile b/tools/tmxcopy/makefile index 36b974ae..732dec36 100644 --- a/tools/tmxcopy/makefile +++ b/tools/tmxcopy/makefile @@ -1,5 +1,5 @@ CC=g++
-CFLAGS=-c
+CFLAGS=-c `pkg-config --cflags libxml-2.0`
LDFLAGS=`pkg-config --libs libxml-2.0`
SOURCES=base64.cpp main.cpp map.cpp xmlutils.cpp zlibutils.cpp
OBJECTS=$(SOURCES:.cpp=.o)
diff --git a/tools/tmxcopy/zlibutils.cpp b/tools/tmxcopy/zlibutils.cpp index 9145f459..39c19aee 100644 --- a/tools/tmxcopy/zlibutils.cpp +++ b/tools/tmxcopy/zlibutils.cpp @@ -119,3 +119,4 @@ compressMemory(unsigned char *in, unsigned int inLength, assert (ret == Z_OK); } +*/ |