mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
Move extra libtool options into configure
This should allow to keep the libtool options all in one place and at the same time define different options depending on the host. Made sure that -no-undefined is set only on Win32. Although no side effects on Linux and OSX have been observed so far, it's probably better to play it safe; it does not seem to be needed/does not seem to matter on *nix, only required for Win32.
This commit is contained in:
parent
7ce599d180
commit
ed1c130ebc
14
configure.ac
14
configure.ac
|
@ -10,6 +10,17 @@ AM_INIT_AUTOMAKE([1.10 -Wall])
|
||||||
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
|
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
|
||||||
AC_CONFIG_MACRO_DIR([m4])
|
AC_CONFIG_MACRO_DIR([m4])
|
||||||
|
|
||||||
|
LIBTOXCORE_LT_VERSION=0:0:0
|
||||||
|
dnl
|
||||||
|
dnl current:revision:age
|
||||||
|
dnl
|
||||||
|
dnl current: increment if interfaces have been added, removed or changed
|
||||||
|
dnl revision: increment if source code has changed, set to zero if current is
|
||||||
|
dnl incremented
|
||||||
|
dnl age: increment if interfaces have been added, set to zero if
|
||||||
|
dnl interfaces have been removed or changed
|
||||||
|
EXTRA_LT_LDFLAGS="-version-info $LIBTOXCORE_LT_VERSION"
|
||||||
|
|
||||||
if test "x${prefix}" = "xNONE"; then
|
if test "x${prefix}" = "xNONE"; then
|
||||||
prefix="${ac_default_prefix}"
|
prefix="${ac_default_prefix}"
|
||||||
fi
|
fi
|
||||||
|
@ -106,6 +117,7 @@ case $host_os in
|
||||||
WIN32="yes"
|
WIN32="yes"
|
||||||
AC_MSG_WARN([nTox is not supported on $host_os yet, disabling])
|
AC_MSG_WARN([nTox is not supported on $host_os yet, disabling])
|
||||||
BUILD_NTOX="no"
|
BUILD_NTOX="no"
|
||||||
|
EXTRA_LT_LDFLAGS="$EXTRA_LT_LDFLAGS -no-undefined"
|
||||||
;;
|
;;
|
||||||
*solaris*)
|
*solaris*)
|
||||||
LIBS="$LIBS -lssp -lsocket -lnsl"
|
LIBS="$LIBS -lssp -lsocket -lnsl"
|
||||||
|
@ -118,6 +130,8 @@ case $host_os in
|
||||||
esac
|
esac
|
||||||
AM_CONDITIONAL(WIN32, test "x$WIN32" = "xyes")
|
AM_CONDITIONAL(WIN32, test "x$WIN32" = "xyes")
|
||||||
|
|
||||||
|
AC_SUBST(EXTRA_LT_LDFLAGS)
|
||||||
|
|
||||||
# Checks for libraries.
|
# Checks for libraries.
|
||||||
LIBSODIUM_LIBS=
|
LIBSODIUM_LIBS=
|
||||||
LIBSODIUM_LDFLAGS=
|
LIBSODIUM_LDFLAGS=
|
||||||
|
|
|
@ -1,5 +1,3 @@
|
||||||
LIBTOXCORE_VERSION = 0:0:0
|
|
||||||
|
|
||||||
lib_LTLIBRARIES = libtoxcore.la
|
lib_LTLIBRARIES = libtoxcore.la
|
||||||
|
|
||||||
libtoxcore_la_include_HEADERS = \
|
libtoxcore_la_include_HEADERS = \
|
||||||
|
@ -33,8 +31,7 @@ libtoxcore_la_CFLAGS = -I$(top_srcdir) \
|
||||||
-I$(top_srcdir)/toxcore \
|
-I$(top_srcdir)/toxcore \
|
||||||
$(LIBSODIUM_CFLAGS)
|
$(LIBSODIUM_CFLAGS)
|
||||||
|
|
||||||
libtoxcore_la_LDFLAGS = -version-info $(LIBTOXCORE_VERSION) \
|
libtoxcore_la_LDFLAGS = $(EXTRA_LT_LDFLAGS) \
|
||||||
-no-undefined \
|
|
||||||
$(LIBSODIUM_LDFLAGS) \
|
$(LIBSODIUM_LDFLAGS) \
|
||||||
$(WINSOCK2_LIBS)
|
$(WINSOCK2_LIBS)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user