2012-07-01 14:52:45 +01:00
|
|
|
# -*- Autoconf -*-
|
|
|
|
# Process this file with autoconf to produce a configure script.
|
|
|
|
|
|
|
|
AC_PREREQ([2.69])
|
|
|
|
AC_INIT([profanity], [0.10], [boothj5web@gmail.com])
|
|
|
|
AM_INIT_AUTOMAKE([foreign])
|
|
|
|
AC_CONFIG_SRCDIR([src/main.c])
|
|
|
|
AC_CONFIG_HEADERS([src/config.h])
|
|
|
|
|
|
|
|
# Checks for programs.
|
|
|
|
AC_PROG_CC
|
|
|
|
|
|
|
|
# Checks for libraries.
|
|
|
|
# FIXME: Replace `main' with a function in `-lexpat':
|
2012-07-01 16:18:57 +01:00
|
|
|
AC_CHECK_LIB([expat], [main], [], [AC_MSG_ERROR([expat is required for profanity])])
|
2012-07-01 14:52:45 +01:00
|
|
|
# FIXME: Replace `main' with a function in `-lncurses':
|
2012-07-01 16:18:57 +01:00
|
|
|
AC_CHECK_LIB([ncurses], [main], [], [AC_MSG_ERROR([ncurses is required for profanity])])
|
2012-07-01 14:52:45 +01:00
|
|
|
# FIXME: Replace `main' with a function in `-lresolv':
|
2012-07-01 16:18:57 +01:00
|
|
|
AC_CHECK_LIB([resolv], [main], [], [AC_MSG_ERROR([libresolv is required for profanity])])
|
2012-07-01 14:52:45 +01:00
|
|
|
# FIXME: Replace `main' with a function in `-lssl':
|
2012-07-01 16:18:57 +01:00
|
|
|
AC_CHECK_LIB([ssl], [main], [], [AC_MSG_ERROR([openssl is required for profanity])])
|
2012-07-01 14:52:45 +01:00
|
|
|
# FIXME: Replace `main' with a function in `-lstrophe':
|
2012-07-01 16:18:57 +01:00
|
|
|
AC_CHECK_LIB([strophe], [main], [], [AC_MSG_ERROR([libstrophe is required for profanity])])
|
2012-07-01 14:52:45 +01:00
|
|
|
# FIXME: Replace `main' with a function in `-lxml2':
|
2012-07-01 16:18:57 +01:00
|
|
|
AC_CHECK_LIB([xml2], [main], [], [AC_MSG_ERROR([xml2 is required for profanity])])
|
|
|
|
AC_CHECK_LIB([glib], [main], [], [AC_MSG_ERROR([glib is required for profanity])])
|
|
|
|
|
|
|
|
CFLAGS="$CFLAGS `pkg-config --cflags --libs libnotify`"
|
2012-07-01 14:52:45 +01:00
|
|
|
|
|
|
|
# Checks for header files.
|
|
|
|
AC_CHECK_HEADERS([stdlib.h string.h])
|
|
|
|
# Checks for typedefs, structures, and compiler characteristics.
|
|
|
|
|
2012-07-01 16:18:57 +01:00
|
|
|
AC_CHECK_HEADERS([libnotify/notify.h], [], [AC_MSG_NOTICE([libnotify not found, desktop notification option not included])])
|
|
|
|
|
2012-07-01 14:52:45 +01:00
|
|
|
# Checks for library functions.
|
|
|
|
AC_FUNC_MALLOC
|
|
|
|
AC_CHECK_FUNCS([atexit memset strdup strndup strstr])
|
|
|
|
|
|
|
|
AC_CONFIG_FILES([Makefile])
|
|
|
|
AC_OUTPUT
|