2012-07-01 14:52:45 +01:00
|
|
|
# -*- Autoconf -*-
|
|
|
|
# Process this file with autoconf to produce a configure script.
|
|
|
|
|
2012-07-13 01:01:37 +01:00
|
|
|
AC_PREREQ([2.65])
|
2012-12-31 01:29:23 +00:00
|
|
|
AC_INIT([profanity], [0.2.0], [boothj5web@gmail.com])
|
|
|
|
AC_DEFINE([PACKAGE_STATUS], ["development"], [Status of this build])
|
2012-07-01 14:52:45 +01:00
|
|
|
AC_CONFIG_SRCDIR([src/main.c])
|
|
|
|
AC_CONFIG_HEADERS([src/config.h])
|
2012-07-03 00:36:04 +01:00
|
|
|
AC_CONFIG_AUX_DIR([build-aux])
|
2012-07-03 01:59:32 +01:00
|
|
|
AM_INIT_AUTOMAKE([foreign subdir-objects])
|
2012-07-01 14:52:45 +01:00
|
|
|
|
|
|
|
# Checks for programs.
|
|
|
|
AC_PROG_CC
|
|
|
|
|
2012-11-25 04:25:22 +00:00
|
|
|
# get canonical host
|
|
|
|
AC_CANONICAL_HOST
|
|
|
|
if test "$host_os" == "cygwin"; then
|
|
|
|
AC_DEFINE([PLATFORM_CYGWIN], [1], [Cygwin])
|
|
|
|
fi
|
|
|
|
|
2012-10-23 13:34:30 +03:00
|
|
|
# Options
|
2013-01-05 17:13:52 +02:00
|
|
|
AC_ARG_ENABLE([notifications],
|
|
|
|
[AS_HELP_STRING([--enable-notifications], [enable desktop notifications])])
|
2012-10-23 13:34:30 +03:00
|
|
|
AC_ARG_WITH([libxml2],
|
|
|
|
[AS_HELP_STRING([--with-libxml2], [link with libxml2 instead of expat])])
|
2013-01-05 17:13:52 +02:00
|
|
|
AC_ARG_WITH([xscreensaver],
|
|
|
|
[AS_HELP_STRING([--with-xscreensaver], [use libXScrnSaver to determine indle time])])
|
2012-10-23 13:34:30 +03:00
|
|
|
|
2012-07-01 14:52:45 +01:00
|
|
|
# Checks for libraries.
|
2012-10-24 01:50:16 +03:00
|
|
|
if test "x$with_libxml2" = xyes; then
|
2013-01-05 17:13:52 +02:00
|
|
|
AC_CHECK_LIB([xml2], [main], [],
|
2012-10-24 01:50:16 +03:00
|
|
|
[AC_MSG_ERROR([libxml2 is required for profanity])])
|
|
|
|
else
|
2013-01-05 17:13:52 +02:00
|
|
|
AC_CHECK_LIB([expat], [main], [],
|
2012-10-24 01:50:16 +03:00
|
|
|
[AC_MSG_ERROR([expat is required for profanity])])
|
|
|
|
fi
|
|
|
|
|
2013-01-05 17:13:52 +02:00
|
|
|
if test "x$enable_notifications" = xyes; then
|
|
|
|
AC_CHECK_LIB([notify], [main], [],
|
|
|
|
[AC_MSG_ERROR([libnotify is required for desktop notifications])])
|
|
|
|
elif test "x$enable_notifications" = x; then
|
|
|
|
AC_CHECK_LIB([notify], [main], [],
|
|
|
|
[AC_MSG_NOTICE([libnotify not found, desktop notifications not supported])])
|
|
|
|
fi
|
|
|
|
|
|
|
|
if test "x$with_xscreensaver" = xyes; then
|
|
|
|
AC_CHECK_LIB([Xss], [main], [],
|
2013-01-05 19:58:24 +00:00
|
|
|
[AC_MSG_ERROR([libXss is required for x autoaway support])])
|
|
|
|
AC_CHECK_LIB([X11], [main], [],
|
|
|
|
[AC_MSG_NOTICE([libX11 is required for x autoaway support])])
|
2013-01-05 17:13:52 +02: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-01-05 19:58:24 +00:00
|
|
|
AC_CHECK_LIB([X11], [main], [],
|
|
|
|
[AC_MSG_NOTICE([libX11 not found, falling back to profanity auto-away])])
|
|
|
|
|
2013-01-05 17:13:52 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
AC_CHECK_LIB([resolv], [main], [],
|
2012-07-08 23:24:22 +01:00
|
|
|
[AC_MSG_ERROR([libresolv is required for profanity])])
|
2013-01-05 17:13:52 +02:00
|
|
|
AC_CHECK_LIB([ssl], [main], [],
|
2012-07-08 23:24:22 +01:00
|
|
|
[AC_MSG_ERROR([openssl is required for profanity])])
|
2013-01-05 17:13:52 +02:00
|
|
|
AC_CHECK_LIB([strophe], [main], [],
|
2012-07-08 23:24:22 +01:00
|
|
|
[AC_MSG_ERROR([libstrophe is required for profanity])])
|
2013-01-05 17:13:52 +02:00
|
|
|
AC_CHECK_LIB([ncursesw], [main], [],
|
2013-01-02 20:27:37 +00:00
|
|
|
[AC_MSG_ERROR([ncursesw is required for profanity])])
|
2013-01-05 17:13:52 +02:00
|
|
|
AC_CHECK_LIB([glib-2.0], [main], [],
|
2012-07-08 23:24:22 +01:00
|
|
|
[AC_MSG_ERROR([glib-2.0 is required for profanity])])
|
2013-01-05 17:13:52 +02:00
|
|
|
AC_CHECK_LIB([curl], [main], [],
|
2012-07-29 00:29:37 +01:00
|
|
|
[AC_MSG_ERROR([libcurl is required for profanity])])
|
2013-01-05 17:13:52 +02:00
|
|
|
AC_CHECK_LIB([headunit], [main], [],
|
2012-07-08 23:40:15 +01:00
|
|
|
[AC_MSG_NOTICE([headunit not found, will not be able to run tests])])
|
2012-07-01 16:18:57 +01:00
|
|
|
|
2012-07-01 14:52:45 +01:00
|
|
|
# Checks for header files.
|
|
|
|
AC_CHECK_HEADERS([stdlib.h string.h])
|
2013-01-02 20:27:37 +00:00
|
|
|
|
2013-01-05 17:13:52 +02:00
|
|
|
# Check for ncursesw/ncurses.h first, Arch linux uses ncurses.h for ncursesw
|
2013-01-02 20:27:37 +00:00
|
|
|
AC_CHECK_HEADERS([ncursesw/ncurses.h], [], [])
|
2012-09-08 16:51:09 +01:00
|
|
|
AC_CHECK_HEADERS([ncurses.h], [], [])
|
2012-07-02 00:36:30 +01:00
|
|
|
|
2013-01-05 17:13:52 +02:00
|
|
|
# Checks for pkgconfig modules
|
2012-07-29 00:29:37 +01:00
|
|
|
PKG_CHECK_MODULES([DEPS], [openssl glib-2.0 libcurl])
|
2012-07-02 00:36:30 +01:00
|
|
|
|
2013-01-05 17:13:52 +02:00
|
|
|
if test "x$enable_notifications" != xno; then
|
|
|
|
PKG_CHECK_MODULES([NOTIFY], [libnotify], [],
|
|
|
|
[AC_MSG_NOTICE([libnotify module not found])])
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Default parameters
|
2012-11-26 02:20:44 +00:00
|
|
|
AM_CFLAGS="-Wall"
|
2012-10-23 13:45:33 +03:00
|
|
|
LIBS="$LIBS $DEPS_LIBS $NOTIFY_LIBS"
|
2012-07-01 14:52:45 +01:00
|
|
|
|
2012-07-30 01:04:37 +01:00
|
|
|
AM_CPPFLAGS="$DEPS_CFLAGS $NOTIFY_CFLAGS"
|
2012-07-30 00:46:39 +01:00
|
|
|
|
|
|
|
AC_SUBST(AM_CFLAGS)
|
|
|
|
AC_SUBST(AM_CPPFLAGS)
|
|
|
|
|
2012-07-02 00:36:30 +01:00
|
|
|
# Checks for typedefs, structures, and compiler characteristics.
|
|
|
|
|
2012-07-01 14:52:45 +01:00
|
|
|
# Checks for library functions.
|
|
|
|
AC_FUNC_MALLOC
|
2013-01-05 16:34:04 +02:00
|
|
|
AC_CHECK_FUNCS([atexit memset strdup strstr])
|
2012-07-01 14:52:45 +01:00
|
|
|
|
|
|
|
AC_CONFIG_FILES([Makefile])
|
|
|
|
AC_OUTPUT
|