diff options
author | Mihai Moldovan <ionic@ionic.de> | 2018-01-03 03:18:12 +0100 |
---|---|---|
committer | Mihai Moldovan <ionic@ionic.de> | 2018-01-03 03:18:12 +0100 |
commit | d1897719ae47dc013184d9676516d5d0fb9e85f2 (patch) | |
tree | 52fd8b655926454f219f074685baffcd599c8e20 /nxproxy | |
parent | 4d481bf99431a22fb5df5e49254c60280bf1815b (diff) | |
download | nx-libs-d1897719ae47dc013184d9676516d5d0fb9e85f2.tar.gz nx-libs-d1897719ae47dc013184d9676516d5d0fb9e85f2.tar.bz2 nx-libs-d1897719ae47dc013184d9676516d5d0fb9e85f2.zip |
nxproxy/configure.ac: enable libtool support.
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.
Diffstat (limited to 'nxproxy')
-rw-r--r-- | nxproxy/configure.ac | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/nxproxy/configure.ac b/nxproxy/configure.ac index 70f43ec6e..a1dcab442 100644 --- a/nxproxy/configure.ac +++ b/nxproxy/configure.ac @@ -16,6 +16,9 @@ AC_CONFIG_MACRO_DIR([m4]) AM_INIT_AUTOMAKE([foreign no-dist-gzip dist-bzip2]) +# Initialize libtool +AC_PROG_LIBTOOL + PROXY_VERSION=nxproxy_version AC_SUBST([PROXY_VERSION]) |