1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-06-09 21:30:42 +00:00
profanity/configure.ac

119 lines
3.9 KiB
Plaintext
Raw Normal View History

2012-07-01 13:52:45 +00:00
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
2012-07-13 00:01:37 +00:00
AC_PREREQ([2.65])
2013-08-11 17:42:54 +00:00
AC_INIT([profanity], [0.4.0], [boothj5web@gmail.com])
PACKAGE_STATUS="development"
## get git branch and revision if in development
if test "x$PACKAGE_STATUS" = xdevelopment; then
AM_CONDITIONAL([INCLUDE_GIT_VERSION], [true])
AC_DEFINE_UNQUOTED([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])
2012-07-01 13:52:45 +00:00
AC_CONFIG_SRCDIR([src/main.c])
AC_CONFIG_HEADERS([src/config.h])
2012-07-02 23:36:04 +00:00
AC_CONFIG_AUX_DIR([build-aux])
AM_INIT_AUTOMAKE([foreign subdir-objects])
2012-07-01 13:52:45 +00: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
# Options
AC_ARG_ENABLE([notifications],
[AS_HELP_STRING([--enable-notifications], [enable desktop notifications])])
AC_ARG_WITH([libxml2],
[AS_HELP_STRING([--with-libxml2], [link with libxml2 instead of expat])])
AC_ARG_WITH([xscreensaver],
[AS_HELP_STRING([--with-xscreensaver], [use libXScrnSaver to determine indle time])])
2012-07-01 13:52:45 +00:00
# Checks for libraries.
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
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], [],
[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])])
elif test "x$with_xscreensaver" = x; then
AC_CHECK_LIB([Xss], [main], [],
[AC_MSG_NOTICE([libXss not found, falling back to profanity auto-away])])
AC_CHECK_LIB([X11], [main], [],
[AC_MSG_NOTICE([libX11 not found, falling back to profanity auto-away])])
fi
AC_CHECK_LIB([resolv], [main], [],
2012-07-08 22:24:22 +00:00
[AC_MSG_ERROR([libresolv is required for profanity])])
AC_CHECK_LIB([ssl], [main], [],
2012-07-08 22:24:22 +00:00
[AC_MSG_ERROR([openssl is required for profanity])])
AC_CHECK_LIB([strophe], [main], [],
2012-07-08 22:24:22 +00:00
[AC_MSG_ERROR([libstrophe is required for profanity])])
AC_CHECK_LIB([ncursesw], [main], [],
2013-01-02 20:27:37 +00:00
[AC_MSG_ERROR([ncursesw is required for profanity])])
AC_CHECK_LIB([glib-2.0], [main], [],
2012-07-08 22:24:22 +00:00
[AC_MSG_ERROR([glib-2.0 is required for profanity])])
AC_CHECK_LIB([curl], [main], [],
2012-07-28 23:29:37 +00:00
[AC_MSG_ERROR([libcurl is required for profanity])])
2013-12-14 16:07:57 +00:00
AC_CHECK_LIB([cmocka], [main], [],
[AC_MSG_NOTICE([cmocka not found, will not be able to run tests])])
2012-07-01 13:52:45 +00:00
# Checks for header files.
AC_CHECK_HEADERS([stdlib.h string.h])
2013-01-02 20:27:37 +00: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 15:51:09 +00:00
AC_CHECK_HEADERS([ncurses.h], [], [])
# Checks for pkgconfig modules
2012-07-28 23:29:37 +00:00
PKG_CHECK_MODULES([DEPS], [openssl glib-2.0 libcurl])
if test "x$enable_notifications" != xno; then
PKG_CHECK_MODULES([NOTIFY], [libnotify], [],
[AC_MSG_NOTICE([libnotify module not found])])
fi
# Default parameters
AM_CFLAGS="-Wall"
if test "x$PACKAGE_STATUS" = xdevelopment; then
AM_CFLAGS="$AM_CFLAGS -Wunused -Werror"
fi
LIBS="$LIBS $DEPS_LIBS $NOTIFY_LIBS"
2012-07-01 13:52:45 +00:00
2012-07-30 00:04:37 +00:00
AM_CPPFLAGS="$DEPS_CFLAGS $NOTIFY_CFLAGS"
AC_SUBST(AM_CFLAGS)
AC_SUBST(AM_CPPFLAGS)
# Checks for typedefs, structures, and compiler characteristics.
2012-07-01 13:52:45 +00:00
# Checks for library functions.
AC_FUNC_MALLOC
AC_CHECK_FUNCS([atexit memset strdup strstr])
2012-07-01 13:52:45 +00:00
AC_CONFIG_FILES([Makefile])
AC_OUTPUT