From 7b0022f8cb7df077406a472b0b786560ea0b94ee Mon Sep 17 00:00:00 2001 From: James Booth Date: Mon, 2 Jul 2012 01:11:35 +0100 Subject: [PATCH] Moved ordering of lib checks in configure.ac --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index ff6796f3..bb529c83 100644 --- a/configure.ac +++ b/configure.ac @@ -14,9 +14,9 @@ AC_PROG_CC AC_CHECK_LIB([ncurses], [main], [], [AC_MSG_ERROR([ncurses is required for profanity])]) AC_CHECK_LIB([resolv], [main], [], [AC_MSG_ERROR([libresolv is required for profanity])]) AC_CHECK_LIB([ssl], [main], [], [AC_MSG_ERROR([openssl is required for profanity])]) -AC_CHECK_LIB([strophe], [main], [], [AC_MSG_ERROR([libstrophe is required for profanity])]) AC_CHECK_LIB([expat], [main], [], [AC_MSG_ERROR([expat is required for profanity])]) AC_CHECK_LIB([xml2], [main], [], [AC_MSG_ERROR([xml2 is required for profanity])]) +AC_CHECK_LIB([strophe], [main], [], [AC_MSG_ERROR([libstrophe is required for profanity])]) AC_CHECK_LIB([glib-2.0], [main], [], [AC_MSG_ERROR([glib-2.0 is required for profanity])]) # Checks for header files.