1 Handle builds without C++
3 libxmlrpc nicely handles the fact of being built without C++ support,
4 except for two locations, fixed by this patch.
6 Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7 Signed-off-by: Alvaro Gamez Machado <alvaro.gamez@hazent.com>
9 Index: b/lib/util/Makefile
10 ===================================================================
11 --- a/lib/util/Makefile
12 +++ b/lib/util/Makefile
17 - cmdline_parser_cpp.o \
22 +ifeq ($(ENABLE_CPLUSPLUS),yes)
23 +LIBOBJS += cmdline_parser_cpp.o
30 ===================================================================
37 -SUBDIRS += util libutil libutil++
38 +SUBDIRS += util libutil
39 +ifeq ($(ENABLE_CPLUSPLUS),yes)
40 + SUBDIRS += libutil++
42 ifeq ($(ENABLE_ABYSS_SERVER),yes)
44 ifeq ($(ENABLE_CPLUSPLUS),yes)