summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2016-12-09 12:52:02 +1100
committerDarren Tucker <dtucker@zip.com.au>2016-12-09 12:52:02 +1100
commitc35995048f41239fc8895aadc3374c5f75180554 (patch)
tree460ac2eb54a0a9e2c84825c25d1b33297f637ced /configure.ac
parentd399a8b914aace62418c0cfa20341aa37a192f98 (diff)
exit is in stdlib.h not unistd.h (that's _exit).
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 7b1be32e9..a221214d1 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1781,7 +1781,7 @@ AC_MSG_CHECKING([for utf8 locale support])
1781AC_RUN_IFELSE( 1781AC_RUN_IFELSE(
1782 [AC_LANG_PROGRAM([[ 1782 [AC_LANG_PROGRAM([[
1783#include <locale.h> 1783#include <locale.h>
1784#include <unistd.h> 1784#include <stdlib.h>
1785 ]], [[ 1785 ]], [[
1786 char *loc = setlocale(LC_CTYPE, "en_US.UTF-8"); 1786 char *loc = setlocale(LC_CTYPE, "en_US.UTF-8");
1787 if (loc != NULL) 1787 if (loc != NULL)