Skip to content

Commit

Permalink
Duplicate b2b_logic code to a deprecated b2b_logic_xml module
Browse files Browse the repository at this point in the history
  • Loading branch information
rvlad-patrascu committed Nov 17, 2020
1 parent 99479fa commit 7648b78
Show file tree
Hide file tree
Showing 18 changed files with 11,943 additions and 0 deletions.
24 changes: 24 additions & 0 deletions modules/b2b_logic_xml/Makefile
@@ -0,0 +1,24 @@
# $Id: Makefile 806 2006-04-14 11:00:10Z bogdan_iancu $
#
# WARNING: do not run this directly, it should be run by the master Makefile

include ../../Makefile.defs
auto_gen=
NAME=b2b_logic_xml.so

ifeq ($(CROSS_COMPILE),)
XML2CFG=$(shell which xml2-config)
endif

ifneq ($(XML2CFG),)
DEFS += $(shell $(XML2CFG) --cflags)
LIBS += $(shell $(XML2CFG) --libs)
else
DEFS += -I$(SYSBASE)/include/libxml2 \
-I$(LOCALBASE)/include/libxml2 \
-I$(LOCALBASE)/include
LIBS += -L$(SYSBASE)/include/lib \
-L$(LOCALBASE)/lib -lxml2
endif

include ../../Makefile.modules

0 comments on commit 7648b78

Please sign in to comment.