1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-06-16 21:35:24 +00:00
profanity/configure.ac

57 lines
2.0 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])
2012-07-29 20:32:04 +00:00
AC_INIT([profanity], [0.1.4], [boothj5web@gmail.com])
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
# Checks for libraries.
2012-07-08 22:24:22 +00:00
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([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])])
2012-07-28 23:29:37 +00:00
AC_CHECK_LIB([curl], [main], [],
[AC_MSG_ERROR([libcurl is required for profanity])])
2012-07-08 22:24:22 +00:00
AC_CHECK_LIB([notify], [main], [],
[AC_MSG_NOTICE([libnotify not found])])
2012-07-08 22:40:15 +00:00
AC_CHECK_LIB([headunit], [main], [],
[AC_MSG_NOTICE([headunit 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])
2012-07-28 23:29:37 +00:00
PKG_CHECK_MODULES([DEPS], [openssl glib-2.0 libcurl])
2012-07-08 22:24:22 +00:00
PKG_CHECK_MODULES([NOTIFY], [libnotify], [],
[AC_MSG_NOTICE([libnotify module not found])])
2012-07-08 22:24:22 +00:00
CFLAGS="$CFLAGS $DEPS_CFLAGS $DEPS_LIBS $NOTIFY_CFLAGS $NOTIFY_LIBS"
CPPFLAGS="$CPPFLAGS $DEPS_CFLAGS $DEPS_LIBS $NOTIFY_CFLAGS $NOTIFY_LIBS"
2012-07-01 13:52:45 +00:00
2012-07-08 22:24:22 +00:00
AC_CHECK_HEADERS([libnotify/notify.h], [],
[AC_MSG_NOTICE([libnotify not found, desktop notification option not included])])
# 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 strndup strstr])
AC_CONFIG_FILES([Makefile])
AC_OUTPUT