summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--configure.in6
1 files changed, 2 insertions, 4 deletions
diff --git a/configure.in b/configure.in
index b69507b..b1c95d1 100644
--- a/configure.in
+++ b/configure.in
@@ -1,8 +1,6 @@
dnl Process this file with autoconf to produce a configure script.
AC_INIT(src/Main.cc)
-CXXFLAGS=-fexceptions
-
dnl Creating versions info.
Baltisot_MAJOR_VERSION=0
@@ -60,7 +58,7 @@ fi
dnl Checks for classical header files.
AC_HEADER_STDC
AC_CHECK_HEADERS(libintl.h fcntl.h limits.h malloc.h strings.h unistd.h)
-AC_CHECK_HEADERS(alloca.h errno.h netdb.h netinet/in.h sys/socket.h)
+AC_CHECK_HEADERS(alloca.h errno.h netdb.h netinet/in.h sys/socket.h stddef.h)
AC_HEADER_SYS_WAIT
AC_STRUCT_TM
@@ -74,7 +72,7 @@ dnl Checks for library functions.
AC_FUNC_ALLOCA
AC_FUNC_MMAP
AC_CHECK_FUNCS(getcwd getwd putenv strdup memmove memset)
-AC_CHECK_FUNCS(strerror strrchr strstr)
+AC_CHECK_FUNCS(strerror strrchr strstr mempcpy)
AC_SEARCH_LIBS(socket,socket)
AC_SEARCH_LIBS(gethostbyname,nsl)
AC_FUNC_FORK