summaryrefslogtreecommitdiffstats
path: root/src/xmlrpc-c.mk
diff options
context:
space:
mode:
Diffstat (limited to 'src/xmlrpc-c.mk')
-rw-r--r--src/xmlrpc-c.mk55
1 files changed, 55 insertions, 0 deletions
diff --git a/src/xmlrpc-c.mk b/src/xmlrpc-c.mk
new file mode 100644
index 0000000..92d5c15
--- /dev/null
+++ b/src/xmlrpc-c.mk
@@ -0,0 +1,55 @@
+# This file is part of MXE.
+# See index.html for further information.
+
+PKG := xmlrpc-c
+$(PKG)_IGNORE :=
+$(PKG)_VERSION := d4364f4
+$(PKG)_CHECKSUM := 3f0cb2a5967832fa5463bd85740eb04911488da9
+$(PKG)_SUBDIR := mirror-$(PKG)-$($(PKG)_VERSION)/advanced
+$(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tar.gz
+$(PKG)_URL := https://github.com/mirror/$(PKG)/tarball/$($(PKG)_VERSION)/$($(PKG)_FILE)
+$(PKG)_DEPS := gcc curl pthreads
+
+define $(PKG)_UPDATE
+ $(WGET) -q -O- 'https://github.com/mirror/xmlrpc-c/commits/master' | \
+ grep 'title="Release' | \
+ $(SED) -n 's,.*/mirror/xmlrpc-c/commit/\([^"]\{7\}\)[^"]\{33\}".*Release \([0-9]*\),\1 \2,p' | \
+ $(SORT) -V -k 2 | \
+ tail -1 | \
+ cut -d ' ' -f1
+endef
+
+$(PKG)_MAKE_OPTS = \
+ BUILDTOOL_CC=gcc \
+ BUILDTOOL_CCLD=gcc \
+ SHARED_LIB_TYPE=@xmlrpc-c-shared-lib-type@ \
+ MUST_BUILD_SHLIB=@xmlrpc-c-must-build-shlib@
+
+define $(PKG)_BUILD_COMMON
+ $(SED) -i 's,curl-config,$(TARGET)-curl-config,g' '$(1)/lib/curl_transport/Makefile'
+ $(SED) -i 's,curl-config,$(TARGET)-curl-config,g' '$(1)/src/Makefile'
+ cd '$(1)' && ./configure \
+ --host='$(TARGET)' \
+ --prefix='$(PREFIX)/$(TARGET)' \
+ --enable-abyss-server=no \
+ --enable-cgi-server=no \
+ --enable-cplusplus \
+ --enable-curl-client \
+ CURL_CONFIG='$(PREFIX)/$(TARGET)/bin/curl-config'
+ $(MAKE) -C '$(1)' -j '$(JOBS)' $($(PKG)_MAKE_OPTS)
+ $(MAKE) -C '$(1)' -j 1 install $($(PKG)_MAKE_OPTS)
+
+ '$(TARGET)-g++' \
+ -W -Wall -Werror -ansi -pedantic \
+ '$(1)/examples/cpp/asynch_client.cpp' -o '$(PREFIX)/$(TARGET)/bin/test-xmlrpc-c.exe' \
+ `'$(PREFIX)/$(TARGET)/bin/xmlrpc-c-config' c++2 client --libs` \
+ `'$(TARGET)-pkg-config' libcurl --cflags --libs`
+endef
+
+$(PKG)_BUILD_STATIC=$(subst @xmlrpc-c-shared-lib-type@,NONE,\
+ $(subst @xmlrpc-c-must-build-shlib@,N,\
+ $($(PKG)_BUILD_COMMON)))
+
+$(PKG)_BUILD_SHARED=$(subst @xmlrpc-c-shared-lib-type@,dll,\
+ $(subst @xmlrpc-c-must-build-shlib@,Y,\
+ $($(PKG)_BUILD_COMMON)))