mirror of
https://github.com/profanity-im/profanity.git
synced 2024-12-04 14:46:46 -05:00
Added libnotify headers to configure.ac
This commit is contained in:
parent
2655d9e8fa
commit
28f5cdf786
1
.gitignore
vendored
1
.gitignore
vendored
@ -24,3 +24,4 @@ depcomp
|
|||||||
install-sh
|
install-sh
|
||||||
missing
|
missing
|
||||||
stamp-h1
|
stamp-h1
|
||||||
|
*~
|
||||||
|
18
configure.ac
18
configure.ac
@ -12,23 +12,27 @@ AC_PROG_CC
|
|||||||
|
|
||||||
# Checks for libraries.
|
# Checks for libraries.
|
||||||
# FIXME: Replace `main' with a function in `-lexpat':
|
# FIXME: Replace `main' with a function in `-lexpat':
|
||||||
AC_CHECK_LIB([expat], [main])
|
AC_CHECK_LIB([expat], [main], [], [AC_MSG_ERROR([expat is required for profanity])])
|
||||||
# FIXME: Replace `main' with a function in `-lncurses':
|
# FIXME: Replace `main' with a function in `-lncurses':
|
||||||
AC_CHECK_LIB([ncurses], [main])
|
AC_CHECK_LIB([ncurses], [main], [], [AC_MSG_ERROR([ncurses is required for profanity])])
|
||||||
# FIXME: Replace `main' with a function in `-lresolv':
|
# FIXME: Replace `main' with a function in `-lresolv':
|
||||||
AC_CHECK_LIB([resolv], [main])
|
AC_CHECK_LIB([resolv], [main], [], [AC_MSG_ERROR([libresolv is required for profanity])])
|
||||||
# FIXME: Replace `main' with a function in `-lssl':
|
# FIXME: Replace `main' with a function in `-lssl':
|
||||||
AC_CHECK_LIB([ssl], [main])
|
AC_CHECK_LIB([ssl], [main], [], [AC_MSG_ERROR([openssl is required for profanity])])
|
||||||
# FIXME: Replace `main' with a function in `-lstrophe':
|
# FIXME: Replace `main' with a function in `-lstrophe':
|
||||||
AC_CHECK_LIB([strophe], [main])
|
AC_CHECK_LIB([strophe], [main], [], [AC_MSG_ERROR([libstrophe is required for profanity])])
|
||||||
# FIXME: Replace `main' with a function in `-lxml2':
|
# FIXME: Replace `main' with a function in `-lxml2':
|
||||||
AC_CHECK_LIB([xml2], [main])
|
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`"
|
||||||
|
|
||||||
# Checks for header files.
|
# Checks for header files.
|
||||||
AC_CHECK_HEADERS([stdlib.h string.h])
|
AC_CHECK_HEADERS([stdlib.h string.h])
|
||||||
|
|
||||||
# Checks for typedefs, structures, and compiler characteristics.
|
# Checks for typedefs, structures, and compiler characteristics.
|
||||||
|
|
||||||
|
AC_CHECK_HEADERS([libnotify/notify.h], [], [AC_MSG_NOTICE([libnotify not found, desktop notification option not included])])
|
||||||
|
|
||||||
# Checks for library functions.
|
# Checks for library functions.
|
||||||
AC_FUNC_MALLOC
|
AC_FUNC_MALLOC
|
||||||
AC_CHECK_FUNCS([atexit memset strdup strndup strstr])
|
AC_CHECK_FUNCS([atexit memset strdup strndup strstr])
|
||||||
|
Loading…
Reference in New Issue
Block a user