I'm getting the following error when trying to build colorer linux library on Mac OS X 10.9
$ make
---------------- Building Colorer-take5 console tools
make -C src/colorer/ -f makefile.gcc
gcc -O3 -Wp,-I../shared/,-I../shared/../zlib/,-w -o objs/xmldom.o -c -s -D__unix__ -DCOLORER_FEATURE_HTTPINPUTSOURCE=FALSE ../shared//./xml/xmldom.cpp
clang: warning: argument unused during compilation: '-s'
../shared//./xml/xmldom.cpp:34:20: error: taking the address of a temporary object of type 'DString' [-Waddress-of-temporary]
entitiesHash.put(&DString("amp"), new SString("&"));
^~~~~~~~~~~~~~~
../shared//./xml/xmldom.cpp:35:20: error: taking the address of a temporary object of type 'DString' [-Waddress-of-temporary]
entitiesHash.put(&DString("lt"), new SString("<"));
^~~~~~~~~~~~~~
../shared//./xml/xmldom.cpp:36:20: error: taking the address of a temporary object of type 'DString' [-Waddress-of-temporary]
entitiesHash.put(&DString("gt"), new SString(">"));
^~~~~~~~~~~~~~
../shared//./xml/xmldom.cpp:37:20: error: taking the address of a temporary object of type 'DString' [-Waddress-of-temporary]
entitiesHash.put(&DString("quot"), new SString("\""));
^~~~~~~~~~~~~~~~
../shared//./xml/xmldom.cpp:38:20: error: taking the address of a temporary object of type 'DString' [-Waddress-of-temporary]
entitiesHash.put(&DString("apos"), new SString("\'"));
^~~~~~~~~~~~~~~~
5 errors generated.
make[1]: *** [objs/xmldom.o] Error 1
make: *** [colorer] Error 2