summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Lifshitz <dlifshitz@macadamian.com>2016-08-02 16:30:12 -0400
committerDavid Lifshitz <dlifshitz@macadamian.com>2016-08-02 17:10:29 -0400
commita84855c64690c8048fe1a8513c0a8b54af345b4b (patch)
treee3112c86faf9e1c2e9a953547a9a90cfa4eda8c2
parent2ff3fb57364cc240a9fbe9d461d4088d501ea2ad (diff)
downloadATCD-a84855c64690c8048fe1a8513c0a8b54af345b4b.tar.gz
BZ-4216 Android build fails when not cross-compiled on Linux
[Changed] platform_android.GNU - replace the platform_linux_common.GNU include with its contents except the erroneous call to getconf [Tests] Test 1: 1) Compile ACE for Android using OSX or Windows 2) Verify build is successful
-rw-r--r--ACE/include/makeinclude/platform_android.GNU118
1 files changed, 117 insertions, 1 deletions
diff --git a/ACE/include/makeinclude/platform_android.GNU b/ACE/include/makeinclude/platform_android.GNU
index 0a3894b7817..2bbbbe19259 100644
--- a/ACE/include/makeinclude/platform_android.GNU
+++ b/ACE/include/makeinclude/platform_android.GNU
@@ -9,7 +9,123 @@ no_hidden_visibility ?= 1
# as of NDK r6 inlining is required
inline ?= 1
-include $(ACE_ROOT)/include/makeinclude/platform_linux_common.GNU
+# start of: include most of platform_linux_common.GNU
+
+# We always include config-linux.h on Linux platforms.
+ACE_PLATFORM_CONFIG ?= config-linux.h
+
+debug ?= 1
+optimize ?= 1
+threads ?= 1
+insure ?= 0
+
+LSB_RELEASE_ID := $(shell lsb_release -i 2> /dev/null || echo Distributor ID: Unknown)
+LSB_RELEASE_RELEASE := $(shell lsb_release -r 2> /dev/null || echo Release: Unknown)
+
+PLATFORM_XT_CPPFLAGS=
+PLATFORM_XT_LIBS=-lXt
+PLATFORM_XT_LDFLAGS=
+
+PLATFORM_FL_CPPFLAGS=
+PLATFORM_FL_LIBS=-lfltk -lfltk_forms -lfltk_gl
+PLATFORM_FL_LDFLAGS=
+
+PLATFORM_X11_CPPFLAGS=-I/usr/X11R6/include
+PLATFORM_X11_LIBS=-lX11
+PLATFORM_X11_LDFLAGS=-L/usr/X11R6/lib
+
+PLATFORM_GL_CPPFLAGS=-I/usr/X11R6/include
+PLATFORM_GL_LIBS =-lGL
+PLATFORM_GL_LDFLAGS =-L/usr/X11R6/lib
+
+PLATFORM_GTK_CPPFLAGS=$(shell gtk-config --cflags)
+PLATFORM_GTK_LIBS =$(shell gtk-config --libs)
+PLATFORM_GTK_LDFLAGS =
+
+PLATFORM_FOX_CPPFLAGS ?= -I/usr/include/fox
+PLATFORM_FOX_LIBS ?= -lFOX
+PLATFORM_FOX_LDFLAGS ?=
+
+# NOTE: we only support wxWindows over GTK
+PLATFORM_WX_CPPFLAGS= $(shell wx-config --cxxflags) $(PLATFORM_GTK_CPPFLAGS)
+PLATFORM_WX_LIBS = $(shell wx-config --libs) $(PLATFORM_GTK_LIBS)
+PLATFORM_WX_LDFLAGS = $(shell wx-config --ldflags) $(PLATFORM_GTK_LDFLAGS)
+
+PLATFORM_BOOST_CPPFLAGS ?=
+PLATFORM_BOOST_LDLAGS ?=
+PLATFORM_BOOST_UTF_LIBS ?= -lboost_unit_test_framework
+
+ifeq ($(buildbits),64)
+PLATFORM_TK_CPPFLAGS=$(shell . /usr/lib64/tkConfig.sh && echo -n $$TK_INCLUDE_SPEC $$TK_DEFS)
+PLATFORM_TK_LIBS=$(shell . /usr/lib64/tkConfig.sh && echo -n $$TK_LIB_FLAG)
+else
+PLATFORM_TK_CPPFLAGS=$(shell . /usr/lib/tkConfig.sh && echo -n $$TK_INCLUDE_SPEC $$TK_DEFS)
+PLATFORM_TK_LIBS=$(shell . /usr/lib/tkConfig.sh && echo -n $$TK_LIB_FLAG)
+endif
+PLATFORM_TK_LDFLAGS=
+
+ifeq ($(buildbits),64)
+PLATFORM_TCL_CPPFLAGS=$(shell . /usr/lib64/tclConfig.sh && echo -n $$TCL_INCLUDE_SPEC $$TCL_DEFS)
+PLATFORM_TCL_LIBS=$(shell . /usr/lib64/tclConfig.sh && echo -n $$(eval echo $$TCL_LIB_FLAG))
+else
+PLATFORM_TCL_CPPFLAGS=$(shell . /usr/lib/tclConfig.sh && echo -n $$TCL_INCLUDE_SPEC $$TCL_DEFS)
+PLATFORM_TCL_LIBS=$(shell . /usr/lib/tclConfig.sh && echo -n $$(eval echo $$TCL_LIB_FLAG))
+endif
+PLATFORM_TCL_LDFLAGS=
+
+PLATFORM_QT_CPPFLAGS ?= -I$(QTDIR)/include
+PLATFORM_QT_LIBS ?= -lqt-mt
+PLATFORM_QT_LDFLAGS ?= -L$(QTDIR)/lib
+
+sctp ?=
+# support for OpenSS7 SCTP
+ifeq ($(sctp),openss7)
+ PLATFORM_SCTP_CPPFLAGS+= -DACE_HAS_OPENSS7_SCTP
+ PLATFORM_SCTP_LDFLAGS?=
+ PLATFORM_SCTP_LIBS?=
+endif
+
+# support for LKSCTP (Linux Kernel 2.5)
+ifeq ($(sctp),lksctp)
+ PLATFORM_SCTP_CPPFLAGS+= -DACE_HAS_LKSCTP
+ PLATFORM_SCTP_LDFLAGS?= -L/usr/local/lib
+ PLATFORM_SCTP_LIBS?= -lsctp
+endif
+
+GNU_LIBPTHREAD_VERSION := $(shell getconf GNU_LIBPTHREAD_VERSION 2> /dev/null || echo Unknown)
+ifeq (NPTL, $(word 1,$(GNU_LIBPTHREAD_VERSION)))
+ NPTL_VERS := $(subst ., ,$(word 2,$(GNU_LIBPTHREAD_VERSION)))
+ ifneq (0, $(word 1,$(NPTL_VERS)))
+ nptl ?= 1
+ endif
+endif
+nptl ?= 0
+ifeq ($(nptl),0)
+ CPPFLAGS += -DACE_LACKS_LINUX_NPTL
+endif
+
+ssl ?= 0
+ifeq ($(ssl),1)
+ # Some Linux OpenSSL installations compile in Kerberos support. Add
+ # the Kerberos include path to preprocessor include path.
+ #
+ # We should probably also add the Kerberos libraries to
+ # PLATFORM_SSL_LIBS but we can't be sure if they are needed without
+ # a more sophisticated check. This will only be a problem when
+ # statically linking the OpenSSL library. The majority of
+ # installations use shared OpenSSL libraries so we should be okay,
+ # at least until we migrate to Autoconf.
+ PLATFORM_SSL_CPPFLAGS += -I/usr/kerberos/include
+endif # ssl
+
+SYSARCH := $(shell uname -m)
+
+PIC = -fPIC
+AR ?= ar
+ARFLAGS ?= rsuv
+RANLIB = @true
+
+# end of: include most of platform_linux_common.GNU
#No rwho on Android
rwho = 0