mirror of
https://github.com/profanity-im/profanity.git
synced 2024-12-04 14:46:46 -05:00
libraries order does matter when --as-needed is passed to linker
This fixes linking error when --as-needed option is used.
This commit is contained in:
parent
c2e94bfb20
commit
7d6e64a53a
20
configure.ac
20
configure.ac
@ -16,14 +16,22 @@ AC_ARG_WITH([libxml2],
|
|||||||
[AS_HELP_STRING([--with-libxml2], [link with libxml2 instead of expat])])
|
[AS_HELP_STRING([--with-libxml2], [link with libxml2 instead of expat])])
|
||||||
|
|
||||||
# Checks for libraries.
|
# Checks for libraries.
|
||||||
AC_CHECK_LIB([ncurses], [main], [],
|
if test "x$with_libxml2" = xyes; then
|
||||||
[AC_MSG_ERROR([ncurses is required for profanity])])
|
AC_CHECK_LIB([xml2], [main], [],
|
||||||
|
[AC_MSG_ERROR([libxml2 is required for profanity])])
|
||||||
|
else
|
||||||
|
AC_CHECK_LIB([expat], [main], [],
|
||||||
|
[AC_MSG_ERROR([expat is required for profanity])])
|
||||||
|
fi
|
||||||
|
|
||||||
AC_CHECK_LIB([resolv], [main], [],
|
AC_CHECK_LIB([resolv], [main], [],
|
||||||
[AC_MSG_ERROR([libresolv is required for profanity])])
|
[AC_MSG_ERROR([libresolv is required for profanity])])
|
||||||
AC_CHECK_LIB([ssl], [main], [],
|
AC_CHECK_LIB([ssl], [main], [],
|
||||||
[AC_MSG_ERROR([openssl is required for profanity])])
|
[AC_MSG_ERROR([openssl is required for profanity])])
|
||||||
AC_CHECK_LIB([strophe], [main], [],
|
AC_CHECK_LIB([strophe], [main], [],
|
||||||
[AC_MSG_ERROR([libstrophe is required for profanity])])
|
[AC_MSG_ERROR([libstrophe is required for profanity])])
|
||||||
|
AC_CHECK_LIB([ncurses], [main], [],
|
||||||
|
[AC_MSG_ERROR([ncurses is required for profanity])])
|
||||||
AC_CHECK_LIB([glib-2.0], [main], [],
|
AC_CHECK_LIB([glib-2.0], [main], [],
|
||||||
[AC_MSG_ERROR([glib-2.0 is required for profanity])])
|
[AC_MSG_ERROR([glib-2.0 is required for profanity])])
|
||||||
AC_CHECK_LIB([curl], [main], [],
|
AC_CHECK_LIB([curl], [main], [],
|
||||||
@ -33,14 +41,6 @@ AC_CHECK_LIB([notify], [main], [],
|
|||||||
AC_CHECK_LIB([headunit], [main], [],
|
AC_CHECK_LIB([headunit], [main], [],
|
||||||
[AC_MSG_NOTICE([headunit not found, will not be able to run tests])])
|
[AC_MSG_NOTICE([headunit not found, will not be able to run tests])])
|
||||||
|
|
||||||
if test "x$with_libxml2" = xyes; then
|
|
||||||
AC_CHECK_LIB([xml2], [main], [],
|
|
||||||
[AC_MSG_ERROR([libxml2 is required for profanity])])
|
|
||||||
else
|
|
||||||
AC_CHECK_LIB([expat], [main], [],
|
|
||||||
[AC_MSG_ERROR([expat is required for profanity])])
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Checks for header files.
|
# Checks for header files.
|
||||||
AC_CHECK_HEADERS([stdlib.h string.h])
|
AC_CHECK_HEADERS([stdlib.h string.h])
|
||||||
AC_CHECK_HEADERS([ncurses.h], [], [])
|
AC_CHECK_HEADERS([ncurses.h], [], [])
|
||||||
|
Loading…
Reference in New Issue
Block a user