Hi Tudor, have modified the Makefile, and now contains the following at the beginning (pasting here just to make sure I am not doing anything wrong):
# makefile written for gnu make CXX = g++ SRC = ./src CPPFLAGS = -I$(SRC) -fPIC DEBUG = -g OPTIMIZE = -O2 GCCWARN = -Wall #-Wstrict-prototypes CXXFLAGS = $(DEBUG) $(GCCWARN) $(OPTIMIZE) $(INCLUDES) LIB = ./libXmlRpc.a CC = gcc-3.4 After make clean and run make again, here is the output: [EMAIL PROTECTED]:~/src/sems/trunk/apps/xmlrpc2di$ make ../../core/plug-in/Makefile.app_module:121: MultithreadXmlRpcServer.d: No such file or directory ../../core/plug-in/Makefile.app_module:121: XMLRPC2DI.d: No such file or directory g++ -MM XMLRPC2DI.cpp -Wall -Wno-reorder -fPIC -g -O2 -Ixmlrpc++0.7/src -D_DEBUG -D_THREAD_SAFE -D_REENTRANT -DSEMS_VERSION='"1.0.0-pre-r1131M"' -DARCH='"i386"' -DOS='"linux"' -I ../../core -Ixmlrpc++0.7/src > XMLRPC2DI.d g++ -MM MultithreadXmlRpcServer.cpp -Wall -Wno-reorder -fPIC -g -O2 -Ixmlrpc++0.7/src -D_DEBUG -D_THREAD_SAFE -D_REENTRANT -DSEMS_VERSION='"1.0.0-pre-r1131M"' -DARCH='"i386"' -DOS='"linux"' -I ../../core -Ixmlrpc++0.7/src > MultithreadXmlRpcServer.d make[1]: Entering directory `/home/dan/src/sems/trunk/apps/xmlrpc2di' make[1]: Nothing to be done for `deps'. make[1]: Leaving directory `/home/dan/src/sems/trunk/apps/xmlrpc2di' make[1]: Entering directory `/home/dan/src/sems/trunk/apps/xmlrpc2di' g++ -Wall -Wno-reorder -fPIC -g -O2 -Ixmlrpc++0.7/src -Ixmlrpc ++0.7/src -D_DEBUG -D_THREAD_SAFE -D_REENTRANT -DSEMS_VERSION='"1.0.0-pre-r1131M"' -DARCH='"i386"' -DOS='"linux"' -I ../../core -Ixmlrpc++0.7/src -I ../../core -Ixmlrpc++0.7/src -c MultithreadXmlRpcServer.cpp -o MultithreadXmlRpcServer.o g++ -Wall -Wno-reorder -fPIC -g -O2 -Ixmlrpc++0.7/src -Ixmlrpc ++0.7/src -D_DEBUG -D_THREAD_SAFE -D_REENTRANT -DSEMS_VERSION='"1.0.0-pre-r1131M"' -DARCH='"i386"' -DOS='"linux"' -I ../../core -Ixmlrpc++0.7/src -I ../../core -Ixmlrpc++0.7/src -c XMLRPC2DI.cpp -o XMLRPC2DI.o make -C xmlrpc++0.7 libXmlRpc.a make[2]: Entering directory `/home/dan/src/sems/trunk/apps/xmlrpc2di/xmlrpc++0.7' g++ -g -Wall -O2 -I./src -fPIC -c -o src/XmlRpcClient.o src/XmlRpcClient.cpp src/XmlRpcClient.cpp: In member function ‘virtual bool XmlRpc::XmlRpcClient::readHeader()’: src/XmlRpcClient.cpp:312: error: ‘strncasecmp’ was not declared in this scope src/XmlRpcClient.cpp:314: error: ‘strncmp’ was not declared in this scope src/XmlRpcClient.cpp: In member function ‘virtual bool XmlRpc::XmlRpcClient::parseResponse(XmlRpc::XmlRpcValue&)’: src/XmlRpcClient.cpp:397: warning: suggest parentheses around && within || make[2]: *** [src/XmlRpcClient.o] Error 1 make[2]: Leaving directory `/home/dan/src/sems/trunk/apps/xmlrpc2di/xmlrpc++0.7' make[1]: *** [xmlrpc++0.7/libXmlRpc.a] Error 2 make[1]: Leaving directory `/home/dan/src/sems/trunk/apps/xmlrpc2di' make: [all] Error 2 (ignored) DanB _______________________________________________ Sems mailing list [email protected] http://lists.iptel.org/mailman/listinfo/sems
