aboutsummaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorJon Lund Steffensen <jonlst@gmail.com>2010-05-06 23:49:04 +0200
committerJon Lund Steffensen <jonlst@gmail.com>2010-05-06 23:49:04 +0200
commit9b3e5c5eb7c575582d507920376b174c011f1ca3 (patch)
tree61e6773a93764cc7c783c69396453a6f0100b9d7 /configure.ac
parentUpdate redshift POT (translation template). (diff)
downloadredshift-ng-9b3e5c5eb7c575582d507920376b174c011f1ca3.tar.gz
redshift-ng-9b3e5c5eb7c575582d507920376b174c011f1ca3.tar.bz2
redshift-ng-9b3e5c5eb7c575582d507920376b174c011f1ca3.tar.xz
configure.ac: Remove useless malloc check, add check for sys/signal.h.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac3
1 files changed, 1 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 27a8f42..5f75fd3 100644
--- a/configure.ac
+++ b/configure.ac
@@ -93,13 +93,12 @@ AS_IF([test "x$enable_gtk" != xno], [
AM_CONDITIONAL([ENABLE_GTK], [test "x$enable_gtk" != xno])
# Checks for header files.
-AC_CHECK_HEADERS([locale.h stdint.h stdlib.h string.h unistd.h])
+AC_CHECK_HEADERS([locale.h stdint.h stdlib.h string.h unistd.h sys/signal.h])
# Checks for typedefs, structures, and compiler characteristics.
AC_TYPE_UINT16_T
# Checks for library functions.
-AC_FUNC_MALLOC
AC_SEARCH_LIBS([clock_gettime], [rt])
AC_SEARCH_LIBS([floor], [m])
AC_CHECK_FUNCS([setlocale strchr floor pow clock_gettime])