2012-07-01 09:52:45 -04:00
|
|
|
# -*- Autoconf -*-
|
|
|
|
# Process this file with autoconf to produce a configure script.
|
|
|
|
|
2013-08-11 13:42:54 -04:00
|
|
|
AC_INIT([profanity], [0.4.0], [boothj5web@gmail.com])
|
2012-07-01 09:52:45 -04:00
|
|
|
AC_CONFIG_SRCDIR([src/main.c])
|
|
|
|
AC_CONFIG_HEADERS([src/config.h])
|
2012-07-02 19:36:04 -04:00
|
|
|
AC_CONFIG_AUX_DIR([build-aux])
|
2012-07-02 20:59:32 -04:00
|
|
|
AM_INIT_AUTOMAKE([foreign subdir-objects])
|
2012-07-01 09:52:45 -04:00
|
|
|
|
2013-12-30 18:39:21 -05:00
|
|
|
### Checks for programs.
|
2012-07-01 09:52:45 -04:00
|
|
|
AC_PROG_CC
|
|
|
|
|
2013-12-30 18:39:21 -05:00
|
|
|
### Get canonical host
|
2012-11-24 23:25:22 -05:00
|
|
|
AC_CANONICAL_HOST
|
2014-03-04 17:59:09 -05:00
|
|
|
PLATFORM="unknown"
|
|
|
|
AS_CASE([$host_os],
|
|
|
|
[darwin*], [PLATFORM="osx"],
|
|
|
|
[cygwin], [PLATFORM="cygwin"],
|
|
|
|
[PLATFORM="nix"])
|
|
|
|
|
2014-03-06 16:38:26 -05:00
|
|
|
PACKAGE_STATUS="development"
|
2014-03-06 15:45:35 -05:00
|
|
|
|
|
|
|
### Get git branch and revision if in development
|
|
|
|
if test "x$PACKAGE_STATUS" = xdevelopment; then
|
|
|
|
AM_CONDITIONAL([INCLUDE_GIT_VERSION], [true])
|
|
|
|
AC_DEFINE([HAVE_GIT_VERSION], [1], [Include git info])
|
|
|
|
else
|
|
|
|
AM_CONDITIONAL([INCLUDE_GIT_VERSION], [false])
|
|
|
|
fi
|
|
|
|
|
|
|
|
AC_DEFINE_UNQUOTED([PACKAGE_STATUS], ["$PACKAGE_STATUS"], [Status of this build])
|
|
|
|
|
2014-03-04 17:59:09 -05:00
|
|
|
AS_IF([test "x$PLATFORM" = xcygwin],
|
2013-12-28 18:27:15 -05:00
|
|
|
[AC_DEFINE([PLATFORM_CYGWIN], [1], [Cygwin])])
|
2012-11-24 23:25:22 -05:00
|
|
|
|
2013-12-30 18:39:21 -05:00
|
|
|
### Options
|
2013-01-05 10:13:52 -05:00
|
|
|
AC_ARG_ENABLE([notifications],
|
|
|
|
[AS_HELP_STRING([--enable-notifications], [enable desktop notifications])])
|
2014-01-03 12:54:51 -05:00
|
|
|
AC_ARG_ENABLE([otr],
|
|
|
|
[AS_HELP_STRING([--enable-otr], [enable otr encryption])])
|
2012-10-23 06:34:30 -04:00
|
|
|
AC_ARG_WITH([libxml2],
|
|
|
|
[AS_HELP_STRING([--with-libxml2], [link with libxml2 instead of expat])])
|
2013-01-05 10:13:52 -05:00
|
|
|
AC_ARG_WITH([xscreensaver],
|
2013-12-28 18:27:15 -05:00
|
|
|
[AS_HELP_STRING([--with-xscreensaver], [use libXScrnSaver to determine idle time])])
|
|
|
|
|
2014-01-02 15:18:42 -05:00
|
|
|
### Select first existing xml library among expat and libxml2
|
2013-12-28 18:27:15 -05:00
|
|
|
PARSER=""
|
2014-01-02 15:18:42 -05:00
|
|
|
PARSER_LIBS=""
|
|
|
|
PARSER_CFLAGS=""
|
2013-12-28 18:27:15 -05:00
|
|
|
AS_IF([test "x$with_libxml2" != xyes],
|
|
|
|
[PKG_CHECK_MODULES([expat], [expat],
|
|
|
|
[PARSER_CFLAGS="$expat_CFLAGS"; PARSER_LIBS="$expat_LIBS"; PARSER="expat"],
|
2014-01-02 15:18:42 -05:00
|
|
|
[AC_CHECK_LIB([expat], [XML_ParserCreate],
|
|
|
|
[PARSER_LIBS="-lexpat"; PARSER="expat"],
|
|
|
|
AS_IF([test "x$with_libxml2" = xno],
|
|
|
|
[AC_MSG_ERROR([expat is required but does not exist])]))])
|
2013-12-28 18:27:15 -05:00
|
|
|
])
|
|
|
|
|
|
|
|
AS_IF([test "x$PARSER" = x -a "x$with_libxml2" != xno],
|
|
|
|
[PKG_CHECK_MODULES([libxml2], [libxml-2.0],
|
|
|
|
[PARSER_CFLAGS="$libxml2_CFLAGS"; PARSER_LIBS="$libxml2_LIBS"; PARSER="libxml2"],
|
|
|
|
AS_IF([test "x$with_libxml2" = xyes],
|
|
|
|
[AC_MSG_ERROR([libxml2 is required but does not exist])]))
|
|
|
|
])
|
|
|
|
|
|
|
|
AS_IF([test "x$PARSER" = x],
|
|
|
|
[AC_MSG_ERROR([either expat or libxml2 is required for profanity])])
|
2014-01-02 15:18:42 -05:00
|
|
|
AM_CPPFLAGS="$AM_CPPFLAGS $PARSER_CFLAGS"
|
|
|
|
LIBS="$LIBS $PARSER_LIBS"
|
2013-12-28 18:27:15 -05:00
|
|
|
|
2014-01-02 15:18:42 -05:00
|
|
|
### Check for libstrophe dependencies
|
2014-01-09 15:39:01 -05:00
|
|
|
AC_CHECK_LIB([resolv], [res_query], [],
|
|
|
|
[AC_CHECK_LIB([resolv], [__res_query], [],
|
|
|
|
[AC_MSG_ERROR([libresolv is required for profanity])])])
|
2013-12-28 18:27:15 -05:00
|
|
|
PKG_CHECK_MODULES([openssl], [openssl], [],
|
|
|
|
[AC_MSG_ERROR([openssl is required for profanity])])
|
2014-01-02 15:18:42 -05:00
|
|
|
AM_CPPFLAGS="$AM_CPPFLAGS $openssl_CFLAGS"
|
|
|
|
LIBS="$LIBS $openssl_LIBS"
|
2013-12-30 18:39:21 -05:00
|
|
|
|
|
|
|
# TODO: autodetect of XML parser libstrophe linked with
|
2014-01-02 15:18:42 -05:00
|
|
|
CFLAGS_RESTORE="$CFLAGS"
|
|
|
|
CFLAGS="$CFLAGS $AM_CPPFLAGS"
|
|
|
|
AC_CHECK_LIB([strophe], [parser_new], [],
|
|
|
|
[AC_MSG_ERROR([libstrophe linked with $PARSER is required for profanity])])
|
|
|
|
CFLAGS="$CFLAGS_RESTORE"
|
2013-12-30 18:39:21 -05:00
|
|
|
|
|
|
|
### Check for ncurses library
|
2013-12-28 18:27:15 -05:00
|
|
|
PKG_CHECK_MODULES([ncursesw], [ncursesw],
|
2013-12-30 18:39:21 -05:00
|
|
|
[NCURSES_CFLAGS="$ncursesw_CFLAGS"; NCURSES_LIBS="$ncursesw_LIBS"; NCURSES="ncursesw"],
|
2013-12-28 18:27:15 -05:00
|
|
|
[PKG_CHECK_MODULES([ncurses], [ncurses],
|
2013-12-30 18:39:21 -05:00
|
|
|
[NCURSES_CFLAGS="$ncurses_CFLAGS"; NCURSES_LIBS="$ncurses_LIBS"; NCURSES="ncurses"],
|
2014-03-06 16:37:46 -05:00
|
|
|
[AC_CHECK_LIB([ncursesw], [main], [],
|
2014-03-06 16:37:40 -05:00
|
|
|
[AC_CHECK_LIB([ncurses], [main], [],
|
2014-02-25 17:50:25 -05:00
|
|
|
[AC_MSG_ERROR([ncurses is required for profanity])])])])])
|
2013-12-30 18:39:21 -05:00
|
|
|
AM_CPPFLAGS="$AM_CPPFLAGS $NCURSES_CFLAGS"
|
|
|
|
LIBS="$LIBS $NCURSES_LIBS"
|
2014-03-08 19:04:39 -05:00
|
|
|
AS_IF([test "x$PLATFORM" = xosx], [LIBS="$LIBS -lncurses"])
|
2013-12-30 18:39:21 -05:00
|
|
|
|
|
|
|
### Check wide characters support in ncurses library
|
2014-03-08 18:57:50 -05:00
|
|
|
CFLAGS_RESTORE="$CFLAGS"
|
|
|
|
CFLAGS="$CFLAGS $NCURSES_CFLAGS"
|
|
|
|
AC_CACHE_CHECK([for wget_wch support in $NCURSES], ncurses_cv_wget_wch,
|
|
|
|
[AC_LINK_IFELSE([AC_LANG_SOURCE([
|
|
|
|
#include <ncurses.h>
|
|
|
|
int main() {
|
|
|
|
(void)wget_wch(NULL, NULL);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
])],
|
|
|
|
[ncurses_cv_wget_wch=yes],
|
|
|
|
[ncurses_cv_wget_wch=no])
|
|
|
|
])
|
|
|
|
CFLAGS="$CFLAGS_RESTORE"
|
2014-03-08 17:32:54 -05:00
|
|
|
|
2014-03-08 19:02:34 -05:00
|
|
|
AS_IF([test "x$ncurses_cv_wget_wch" != xyes],
|
|
|
|
[AC_MSG_ERROR([ncurses does not support wide characters])])
|
2013-12-28 18:27:15 -05:00
|
|
|
|
2014-01-02 15:18:42 -05:00
|
|
|
### Check for other profanity dependencies
|
|
|
|
PKG_CHECK_MODULES([glib], [glib-2.0 >= 2.26], [],
|
|
|
|
[AC_MSG_ERROR([glib 2.26 or higher is required for profanity])])
|
|
|
|
PKG_CHECK_MODULES([curl], [libcurl], [],
|
|
|
|
[AC_MSG_ERROR([libcurl is required for profanity])])
|
2014-03-08 19:04:39 -05:00
|
|
|
AS_IF([test "x$PLATFORM" = xosx], [LIBS="$LIBS -lcurl"])
|
2014-03-04 17:59:09 -05:00
|
|
|
|
|
|
|
### Check for desktop notification support
|
|
|
|
### Linux requires libnotify
|
|
|
|
### Windows uses native OS calls
|
|
|
|
### OSX requires terminal-notifier
|
|
|
|
|
|
|
|
AS_IF([test "x$PLATFORM" = xosx],
|
|
|
|
[AS_IF([test "x$enable_notifications" != xno],
|
|
|
|
[NOTIFIER_PATH="no"
|
|
|
|
AC_PATH_PROG(NOTIFIER_PATH, terminal-notifier, no)
|
|
|
|
AS_IF([test "x$NOTIFIER_PATH" = xno],
|
|
|
|
[AS_IF([test "x$enable_notifications" = xyes],
|
|
|
|
[AC_MSG_ERROR([terminal-notifier not found, required for desktop notifications.])],
|
|
|
|
[AC_MSG_NOTICE([Desktop notifications not supported.])])],
|
|
|
|
[AC_DEFINE([HAVE_OSXNOTIFY], [1], [terminal notifier])])])],
|
|
|
|
[test "x$PLATFORM" = xnix],
|
|
|
|
[AS_IF([test "x$enable_notifications" != xno],
|
|
|
|
[PKG_CHECK_MODULES([libnotify], [libnotify],
|
|
|
|
[AC_DEFINE([HAVE_LIBNOTIFY], [1], [libnotify module])],
|
|
|
|
[AS_IF([test "x$enable_notifications" = xyes],
|
|
|
|
[AC_MSG_ERROR([libnotify is required but does not exist])],
|
|
|
|
[AC_MSG_NOTICE([libnotify support will be disabled])])])])])
|
2013-12-28 18:27:15 -05:00
|
|
|
|
|
|
|
# TODO: rewrite this
|
2013-01-05 10:13:52 -05:00
|
|
|
if test "x$with_xscreensaver" = xyes; then
|
|
|
|
AC_CHECK_LIB([Xss], [main], [],
|
2013-01-05 14:58:24 -05:00
|
|
|
[AC_MSG_ERROR([libXss is required for x autoaway support])])
|
2013-12-28 18:27:15 -05:00
|
|
|
AC_CHECK_LIB([X11], [main], [],
|
|
|
|
[AC_MSG_ERROR([libX11 is required for x autoaway support])])
|
2013-01-05 10:13:52 -05:00
|
|
|
elif test "x$with_xscreensaver" = x; then
|
|
|
|
AC_CHECK_LIB([Xss], [main], [],
|
|
|
|
[AC_MSG_NOTICE([libXss not found, falling back to profanity auto-away])])
|
2013-12-28 18:27:15 -05:00
|
|
|
AC_CHECK_LIB([X11], [main], [],
|
2013-01-05 14:58:24 -05:00
|
|
|
[AC_MSG_NOTICE([libX11 not found, falling back to profanity auto-away])])
|
2013-08-13 17:23:47 -04:00
|
|
|
fi
|
2013-01-05 14:58:24 -05:00
|
|
|
|
2014-02-08 19:32:11 -05:00
|
|
|
AM_CONDITIONAL([BUILD_OTR], [false])
|
2014-02-08 18:07:51 -05:00
|
|
|
AM_CONDITIONAL([BUILD_OTR3], [false])
|
2014-02-08 19:32:11 -05:00
|
|
|
AM_CONDITIONAL([BUILD_OTR4], [false])
|
2014-01-03 12:54:51 -05:00
|
|
|
if test "x$enable_otr" = xyes; then
|
2014-02-08 18:29:42 -05:00
|
|
|
AC_SEARCH_LIBS([otrl_init], [otr],
|
2014-02-08 19:32:11 -05:00
|
|
|
[AC_COMPILE_IFELSE(
|
|
|
|
[AC_LANG_PROGRAM([[
|
|
|
|
#include <libotr/version.h>
|
|
|
|
]],[[
|
|
|
|
#if OTRL_VERSION_MAJOR == 4
|
|
|
|
// OK
|
|
|
|
#else
|
|
|
|
# assume version 3
|
|
|
|
#endif
|
|
|
|
]])],
|
|
|
|
[AM_CONDITIONAL([BUILD_OTR], [true]) AM_CONDITIONAL([BUILD_OTR4], [true]) AC_DEFINE([HAVE_LIBOTR], [1], [Have libotr])],
|
|
|
|
[AM_CONDITIONAL([BUILD_OTR], [true]) AM_CONDITIONAL([BUILD_OTR3], [true]) AC_DEFINE([HAVE_LIBOTR], [1], [Have libotr])])],
|
2013-08-13 17:23:47 -04:00
|
|
|
[AC_MSG_ERROR([libotr is required for otr encryption support])])
|
|
|
|
elif test "x$enable_otr" = x; then
|
2014-02-08 18:29:42 -05:00
|
|
|
AC_SEARCH_LIBS([otrl_init], [otr],
|
2014-02-08 19:32:11 -05:00
|
|
|
[AC_COMPILE_IFELSE(
|
|
|
|
[AC_LANG_PROGRAM([[
|
|
|
|
#include <libotr/version.h>
|
|
|
|
]],[[
|
|
|
|
#if OTRL_VERSION_MAJOR == 4
|
|
|
|
// OK
|
|
|
|
#else
|
|
|
|
# assume version 3
|
|
|
|
#endif
|
|
|
|
]])],
|
|
|
|
[AM_CONDITIONAL([BUILD_OTR], [true]) AM_CONDITIONAL([BUILD_OTR4], [true]) AC_DEFINE([HAVE_LIBOTR], [1], [Have libotr])],
|
|
|
|
[AM_CONDITIONAL([BUILD_OTR], [true]) AM_CONDITIONAL([BUILD_OTR3], [true]) AC_DEFINE([HAVE_LIBOTR], [1], [Have libotr])])],
|
2014-03-04 19:11:18 -05:00
|
|
|
[AC_MSG_NOTICE([libotr not found, otr encryption support not enabled])])
|
2013-01-05 10:13:52 -05:00
|
|
|
fi
|
|
|
|
|
2013-12-30 18:39:21 -05:00
|
|
|
### cmocka is required only for tests, profanity shouldn't be linked with it
|
|
|
|
### TODO: pass cmocka_CFLAGS and cmocka_LIBS to Makefile.am
|
2013-12-28 18:27:15 -05:00
|
|
|
PKG_CHECK_MODULES([cmocka], [cmocka], [],
|
|
|
|
[AC_MSG_NOTICE([cmocka is not found, will not be able to run tests])])
|
2012-07-01 11:18:57 -04:00
|
|
|
|
2013-12-30 18:39:21 -05:00
|
|
|
### Check for ncursesw/ncurses.h first, Arch linux uses ncurses.h for ncursesw
|
2013-01-02 15:27:37 -05:00
|
|
|
AC_CHECK_HEADERS([ncursesw/ncurses.h], [], [])
|
2012-09-08 11:51:09 -04:00
|
|
|
AC_CHECK_HEADERS([ncurses.h], [], [])
|
2012-07-01 19:36:30 -04:00
|
|
|
|
2013-12-30 18:39:21 -05:00
|
|
|
### Default parameters
|
2014-02-12 15:52:27 -05:00
|
|
|
AM_CFLAGS="-Wall -Wno-deprecated-declarations"
|
2013-12-28 18:27:15 -05:00
|
|
|
AS_IF([test "x$PACKAGE_STATUS" = xdevelopment],
|
|
|
|
[AM_CFLAGS="$AM_CFLAGS -Wunused -Werror"])
|
2014-01-02 15:18:42 -05:00
|
|
|
AM_CPPFLAGS="$AM_CPPFLAGS $glib_CFLAGS $curl_CFLAGS $libnotify_CFLAGS"
|
|
|
|
LIBS="$LIBS $glib_LIBS $curl_LIBS $libnotify_LIBS"
|
2012-07-29 19:46:39 -04:00
|
|
|
|
|
|
|
AC_SUBST(AM_CFLAGS)
|
|
|
|
AC_SUBST(AM_CPPFLAGS)
|
|
|
|
|
2013-12-30 18:39:21 -05:00
|
|
|
### Checks for library functions.
|
2014-03-08 18:38:30 -05:00
|
|
|
AS_IF([test "x$PLATFORM" != xosx], [AC_FUNC_MALLOC])
|
2013-01-05 09:34:04 -05:00
|
|
|
AC_CHECK_FUNCS([atexit memset strdup strstr])
|
2012-07-01 09:52:45 -04:00
|
|
|
|
|
|
|
AC_CONFIG_FILES([Makefile])
|
|
|
|
AC_OUTPUT
|
2013-12-28 18:27:15 -05:00
|
|
|
|
|
|
|
echo ""
|
2014-03-04 17:59:09 -05:00
|
|
|
echo "PLATFORM : $host_os"
|
2013-12-28 18:27:15 -05:00
|
|
|
echo "PACKAGE_STATUS : $PACKAGE_STATUS"
|
|
|
|
echo "AM_CFLAGS : $AM_CFLAGS"
|
|
|
|
echo "AM_CPPFLAGS : $AM_CPPFLAGS"
|
|
|
|
echo "LIBS : $LIBS"
|
|
|
|
echo "XML Parser : $PARSER"
|
|
|
|
echo ""
|
|
|
|
echo "Now you can run \`make' to build profanity"
|