From 41ea54b0217175a4b78980671f4c6818eb66b166 Mon Sep 17 00:00:00 2001 From: Mike Gabriel Date: Wed, 26 Apr 2017 13:26:47 +0200 Subject: nxproxy: Switch to autoreconf. This also solves the last remnant of overlinking as described in GH issue #133. Fixes ArcticaProject/nx-libs#133. --- nxproxy/m4/nx-macros.m4 | 1 + 1 file changed, 1 insertion(+) create mode 120000 nxproxy/m4/nx-macros.m4 (limited to 'nxproxy/m4') diff --git a/nxproxy/m4/nx-macros.m4 b/nxproxy/m4/nx-macros.m4 new file mode 120000 index 000000000..813e9b041 --- /dev/null +++ b/nxproxy/m4/nx-macros.m4 @@ -0,0 +1 @@ +../../m4/nx-macros.m4 \ No newline at end of file -- cgit v1.2.3 From 1f717c6fdfa478f1c422bff51bc8574360dbe127 Mon Sep 17 00:00:00 2001 From: Mihai Moldovan Date: Fri, 29 Sep 2017 17:19:06 +0200 Subject: nx{comp{,shad},proxy}: add configure flag --enable-cxx11 to enable and setup optional C++11 support. Use AX_CXX_COMPILE_STDCXX(_11) from autotools archive. Note: should only be used in tandem. Make sure that each component either uses the C++11 ABI or none uses it. Mixing and matching libraries and binaries with different C++ ABIs might lead to weird errors. --- nxproxy/m4/ax_cxx_compile_stdcxx.m4 | 1 + nxproxy/m4/ax_cxx_compile_stdcxx_11.m4 | 1 + 2 files changed, 2 insertions(+) create mode 120000 nxproxy/m4/ax_cxx_compile_stdcxx.m4 create mode 120000 nxproxy/m4/ax_cxx_compile_stdcxx_11.m4 (limited to 'nxproxy/m4') diff --git a/nxproxy/m4/ax_cxx_compile_stdcxx.m4 b/nxproxy/m4/ax_cxx_compile_stdcxx.m4 new file mode 120000 index 000000000..28ebfd1a6 --- /dev/null +++ b/nxproxy/m4/ax_cxx_compile_stdcxx.m4 @@ -0,0 +1 @@ +../../m4/ax_cxx_compile_stdcxx.m4 \ No newline at end of file diff --git a/nxproxy/m4/ax_cxx_compile_stdcxx_11.m4 b/nxproxy/m4/ax_cxx_compile_stdcxx_11.m4 new file mode 120000 index 000000000..5fbe8790d --- /dev/null +++ b/nxproxy/m4/ax_cxx_compile_stdcxx_11.m4 @@ -0,0 +1 @@ +../../m4/ax_cxx_compile_stdcxx_11.m4 \ No newline at end of file -- cgit v1.2.3 From 1c6c9c04b56656d9ab3f486738a4950e71f29b74 Mon Sep 17 00:00:00 2001 From: Mihai Moldovan Date: Fri, 27 Oct 2017 14:14:24 +0200 Subject: nxproxy: use ax_pthread.m4. Works around libtool bug related to using both -nostdlib and -pthread (with the former dropping latter usage.) --- nxproxy/m4/ax_pthread.m4 | 1 + 1 file changed, 1 insertion(+) create mode 120000 nxproxy/m4/ax_pthread.m4 (limited to 'nxproxy/m4') diff --git a/nxproxy/m4/ax_pthread.m4 b/nxproxy/m4/ax_pthread.m4 new file mode 120000 index 000000000..156af3df3 --- /dev/null +++ b/nxproxy/m4/ax_pthread.m4 @@ -0,0 +1 @@ +../../m4/ax_pthread.m4 \ No newline at end of file -- cgit v1.2.3