|
@@ -4,28 +4,26 @@
|
|
#
|
|
#
|
|
#
|
|
#
|
|
|
|
|
|
-
|
|
|
|
include ../../Makefile.defs
|
|
include ../../Makefile.defs
|
|
auto_gen=
|
|
auto_gen=
|
|
NAME=ims_icscf.so
|
|
NAME=ims_icscf.so
|
|
-LIBS=
|
|
|
|
-
|
|
|
|
-DEFS += -DOPENSER_MOD_INTERFACE
|
|
|
|
|
|
|
|
-DEFS += -I/usr/include/libxml2
|
|
|
|
-LIBS += -L$(LOCALBASE)/lib -lxml2
|
|
|
|
|
|
+ifeq ($(CROSS_COMPILE),)
|
|
|
|
+XML2CFG=$(shell which xml2-config)
|
|
|
|
+endif
|
|
|
|
|
|
-ifneq ($(OS),darwin)
|
|
|
|
- LIBS += -lrt
|
|
|
|
|
|
+ifneq ($(XML2CFG),)
|
|
|
|
+ DEFS += $(shell $(XML2CFG) --cflags )
|
|
|
|
+ LIBS += $(shell $(XML2CFG) --libs)
|
|
|
|
+else
|
|
|
|
+ DEFS+=-I$(LOCALBASE)/include/libxml2 \
|
|
|
|
+ -I$(LOCALBASE)/include
|
|
|
|
+ LIBS+=-L$(LOCALBASE)/lib -lxml2
|
|
endif
|
|
endif
|
|
|
|
|
|
|
|
+DEFS += -DOPENSER_MOD_INTERFACE
|
|
|
|
|
|
SERLIBPATH=../../lib
|
|
SERLIBPATH=../../lib
|
|
SER_LIBS+=$(SERLIBPATH)/srdb1/srdb1 $(SERLIBPATH)/kcore/kcore
|
|
SER_LIBS+=$(SERLIBPATH)/srdb1/srdb1 $(SERLIBPATH)/kcore/kcore
|
|
SER_LIBS+=$(SERLIBPATH)/ims/kamailio_ims
|
|
SER_LIBS+=$(SERLIBPATH)/ims/kamailio_ims
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
include ../../Makefile.modules
|
|
include ../../Makefile.modules
|