aboutsummaryrefslogtreecommitdiff
path: root/nxproxy/configure.ac
Commit message (Collapse)AuthorAgeFilesLines
* Add support for custom version stringUlrich Sibiller2020-01-051-0/+8
| | | | | | | | | | | Make nxproxy and nxagent print an arbitrary version number by running make NX_VERSION_CUSTOM="myvers". nxagent and nxproxy will then show this in addition to the original version number: NXPROXY - Version myvers (3.5.99.22) NXAGENT - Version myvers (3.5.99.22) Fixes ArcticaProject/nx-libs#606
* nxproxy/{m4,configure.ac,src/Makefile.am}: drop pthread overlinking.Mihai Moldovan2019-04-041-11/+0
| | | | | | Should be fixed by correctly building libXcomp. See: ArcticaProject/nx-libs#756
* nxproxy/{configure.ac,src/Makefile.am}: only enable new ELF dtags if target ↵Mihai Moldovan2018-02-251-0/+2
| | | | | | system actually is ELF-based. Fixes: ArcticaProject/nx-libs#661
* nxproxy/configure.ac: enable libtool support.Mihai Moldovan2018-01-031-0/+3
| | | | | | | | Using libtool, the nxproxy binary will be replaced by a shell script wrapper that correctly pulls in required libraries (like libXcomp), thus making it possible to start the binary directly in the build directory. This wrapper is dropped during installation time.
* nxproxy/configure.ac: drop --enable-cxx11.Mihai Moldovan2018-01-031-6/+0
| | | | | | | | This is a C program, so enabling or disabling C++11 support will not do anything useful. At most it'll lead to errors when using libtool, which is the next change to come...
* nx{comp{,shad},proxy}: use dist-bzip2 instead of dist-xz.Mihai Moldovan2017-12-161-1/+1
| | | | | Automake older than version 1.11 does not support dist-xz. No workaround possible via a feature check, as far as I can tell.
* nxproxy: use ax_pthread.m4.Mihai Moldovan2017-10-271-0/+11
| | | | | Works around libtool bug related to using both -nostdlib and -pthread (with the former dropping latter usage.)
* nx{comp{,shad},proxy}: add configure flag --enable-cxx11 to enable and setup ↵Mihai Moldovan2017-10-271-0/+6
| | | | | | | | | | 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.
* nx*/configure.ac: Use newly introduced macro NX_DEFAULT_OPTIONS instead of ↵Mike Gabriel2017-08-111-1/+1
| | | | NX_COMPILER_FLAGS.
* nxproxy/configure.ac: Have AC_LANG before NX_COMPILER_BRAND. Thanks to Ionic ↵Mike Gabriel2017-07-131-1/+1
| | | | for spotting this same flaw in nxcompshad.
* nxproxy: Switch to autoreconf.Mike Gabriel2017-07-121-0/+32
This also solves the last remnant of overlinking as described in GH issue #133. Fixes ArcticaProject/nx-libs#133.