CC -Wall -g `xmlrpc-c-config client abyss-server --cflags`   `xmlrpc-c-config client abyss-server --libs`   xmlrpc_sample_add_server.c   -o xmlrpc_sample_add_server

above is command line command I used to compile xmlrpc_sample_add_server.c but I get this error,

    xmlrpc_sample_add_server.c:11: fatal error: xmlrpc-c/server_abyss.h: No such file or directory
compilation terminated.

Can anybody tell me what I'm doing wrong??

link|improve this question

71% accept rate
feedback

1 Answer

up vote 0 down vote accepted
SRCDIR = $(CURDIR)/..
BLDDIR = $(SRCDIR)
XMLRPC_C_CONFIG = $(BLDDIR)/xmlrpc-c-config.test

all: xmlrpc_sample_add_server

xmlrpc_sample_add_server : xmlrpc_sample_add_server.o
        gcc -Wall -g -o xmlrpc_sample_add_server xmlrpc_sample_add_server.o   $(shell $(XMLRPC_C_CONFIG) abyss-server --libs) 

xmlrpc_sample_add_server.o : xmlrpc_sample_add_server.c
        gcc -Wall -g -c -I. $(shell $(XMLRPC_C_CONFIG) client abyss-server --cflags)    xmlrpc_sample_add_server.c 

clean:
        rm -rf *.o xmlrpc_smaple_add_server

Found the answer...

for some reason one would have to make the object first then compile based on the object...

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.