aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile.in8
-rw-r--r--aclocal.m41
-rwxr-xr-xautogen.sh5
-rwxr-xr-xcompile.sh1
-rwxr-xr-xconfigure1193
-rw-r--r--configure.ac32
-rw-r--r--m4/ax_check_typedef.m476
-rw-r--r--src/Makefile.in3
-rw-r--r--src/aconfig.h.in8
9 files changed, 1153 insertions, 174 deletions
diff --git a/Makefile.in b/Makefile.in
index cee7de5..29304f2 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -81,13 +81,13 @@ subdir = .
DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \
$(top_srcdir)/configure $(am__configure_deps) build/ar-lib \
build/compile build/config.guess build/config.sub \
- build/install-sh build/missing $(top_srcdir)/build/ar-lib \
- $(top_srcdir)/build/compile $(top_srcdir)/build/config.guess \
+ build/depcomp build/install-sh build/missing \
+ $(top_srcdir)/build/ar-lib $(top_srcdir)/build/compile \
+ $(top_srcdir)/build/config.guess \
$(top_srcdir)/build/config.sub $(top_srcdir)/build/install-sh \
$(top_srcdir)/build/missing
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
-am__aclocal_m4_deps = $(top_srcdir)/m4/ax_check_typedef.m4 \
- $(top_srcdir)/configure.ac
+am__aclocal_m4_deps = $(top_srcdir)/configure.ac
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
$(ACLOCAL_M4)
am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
diff --git a/aclocal.m4 b/aclocal.m4
index 578279d..a501bf8 100644
--- a/aclocal.m4
+++ b/aclocal.m4
@@ -1266,4 +1266,3 @@ AC_SUBST([am__tar])
AC_SUBST([am__untar])
]) # _AM_PROG_TAR
-m4_include([m4/ax_check_typedef.m4])
diff --git a/autogen.sh b/autogen.sh
index 96fb4e9..175f134 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -1,13 +1,12 @@
#!/bin/sh
+set -x
+
rm -f config.cache
mkdir -p build
-echo "Looking in current directory for macros."
aclocal -I .
-echo "Adding missing files."
automake --add-missing --force-missing
-echo "Autoconf, Autoheader, Automake"
autoconf
autoheader
automake --foreign --add-missing --force-missing --copy
diff --git a/compile.sh b/compile.sh
index 5c7b1d6..d375d56 100755
--- a/compile.sh
+++ b/compile.sh
@@ -1,5 +1,6 @@
#!/bin/sh
set -e
+set -x
DIR=$(dirname $0)
PWD=$(pwd)
diff --git a/configure b/configure
index 568c04e..75d33db 100755
--- a/configure
+++ b/configure
@@ -3194,7 +3194,6 @@ case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac
ac_config_headers="$ac_config_headers src/aconfig.h"
-
DEPDIR="${am__leading_dot}deps"
ac_config_commands="$ac_config_commands depfiles"
@@ -4693,8 +4692,6 @@ $as_echo "$ac_cv_safe_to_define___extensions__" >&6; }
$as_echo "#define _TANDEM_SOURCE 1" >>confdefs.h
-CFLAGS=""
-LDFLAGS=""
# Checks for programs.
if test -n "$ac_tool_prefix"; then
@@ -5695,6 +5692,7 @@ fi
+
if test -n "$ac_tool_prefix"; then
# Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args.
set dummy ${ac_tool_prefix}ranlib; ac_word=$2
@@ -6427,7 +6425,7 @@ fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_enable_assert" >&5
$as_echo "$ac_enable_assert" >&6; }
-for ac_header in stdio.h stdlib.h stdbool.h string.h unistd.h errno.h sys/stat.h sys/types.h sys/wait.h fcntl.h semaphore.h time.h mqueue.h syslog.h
+for ac_header in glob.h stdio.h stdlib.h stdbool.h string.h unistd.h errno.h sys/stat.h sys/types.h sys/wait.h fcntl.h semaphore.h time.h mqueue.h syslog.h
do :
as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default"
@@ -6548,73 +6546,25 @@ _ACEOF
;;
esac
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for size_t in stdio.h" >&5
-$as_echo_n "checking for size_t in stdio.h... " >&6; }
- ac_lib_var=`echo size_t'_'stdio.h | sed 'y%./+-%__p_%'`
-if eval \${ac_cv_lib_$ac_lib_var+:} false; then :
- $as_echo_n "(cached) " >&6
+ac_fn_c_check_type "$LINENO" "size_t" "ac_cv_type_size_t" "$ac_includes_default"
+if test "x$ac_cv_type_size_t" = xyes; then :
+
else
- eval "ac_cv_type_$ac_lib_var='not-found'"
- ac_cv_check_typedef_header=`echo stdio.h`
- cat confdefs.h - <<_ACEOF >conftest.$ac_ext
-/* end confdefs.h. */
-#include <$ac_cv_check_typedef_header>
-int
-main ()
-{
-int x = sizeof(size_t); x = x;
- ;
- return 0;
-}
+
+cat >>confdefs.h <<_ACEOF
+#define size_t unsigned int
_ACEOF
-if ac_fn_c_try_compile "$LINENO"; then :
- eval "ac_cv_type_$ac_lib_var=yes"
-else
- eval "ac_cv_type_$ac_lib_var=no"
-fi
-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
- if test `eval echo '$ac_cv_type_'$ac_lib_var` = "no" ; then
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
-$as_echo "no" >&6; }
- else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
-$as_echo "yes" >&6; }
- fi
fi
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ssize_t in stdio.h" >&5
-$as_echo_n "checking for ssize_t in stdio.h... " >&6; }
- ac_lib_var=`echo ssize_t'_'stdio.h | sed 'y%./+-%__p_%'`
-if eval \${ac_cv_lib_$ac_lib_var+:} false; then :
- $as_echo_n "(cached) " >&6
+ac_fn_c_check_type "$LINENO" "ssize_t" "ac_cv_type_ssize_t" "$ac_includes_default"
+if test "x$ac_cv_type_ssize_t" = xyes; then :
+
else
- eval "ac_cv_type_$ac_lib_var='not-found'"
- ac_cv_check_typedef_header=`echo stdio.h`
- cat confdefs.h - <<_ACEOF >conftest.$ac_ext
-/* end confdefs.h. */
-#include <$ac_cv_check_typedef_header>
-int
-main ()
-{
-int x = sizeof(ssize_t); x = x;
- ;
- return 0;
-}
+
+cat >>confdefs.h <<_ACEOF
+#define ssize_t unsigned int
_ACEOF
-if ac_fn_c_try_compile "$LINENO"; then :
- eval "ac_cv_type_$ac_lib_var=yes"
-else
- eval "ac_cv_type_$ac_lib_var=no"
-fi
-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
- if test `eval echo '$ac_cv_type_'$ac_lib_var` = "no" ; then
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
-$as_echo "no" >&6; }
- else
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
-$as_echo "yes" >&6; }
- fi
fi
@@ -7596,17 +7546,6 @@ fi
done
-for ac_func in clock_gettime
-do :
- ac_fn_c_check_func "$LINENO" "clock_gettime" "ac_cv_func_clock_gettime"
-if test "x$ac_cv_func_clock_gettime" = xyes; then :
- cat >>confdefs.h <<_ACEOF
-#define HAVE_CLOCK_GETTIME 1
-_ACEOF
-
-fi
-done
-
for ac_func in asprintf system printf fprintf mkfifo stat open close fork memmove memcpy memset strdup strndup strerror strstr strlen strnlen strtol openlog vsyslog closelog
do :
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
@@ -7622,6 +7561,1109 @@ fi
done
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing initscr" >&5
+$as_echo_n "checking for library containing initscr... " >&6; }
+if ${ac_cv_search_initscr+:} false; then :
+ $as_echo_n "(cached) " >&6
+else
+ ac_func_search_save_LIBS=$LIBS
+cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h. */
+
+/* Override any GCC internal prototype to avoid an error.
+ Use char because int might match the return type of a GCC
+ builtin and then its argument prototype would still apply. */
+#ifdef __cplusplus
+extern "C"
+#endif
+char initscr ();
+int
+main ()
+{
+return initscr ();
+ ;
+ return 0;
+}
+_ACEOF
+for ac_lib in '' ncurses; do
+ if test -z "$ac_lib"; then
+ ac_res="none required"
+ else
+ ac_res=-l$ac_lib
+ LIBS="-l$ac_lib $ac_func_search_save_LIBS"
+ fi
+ if ac_fn_c_try_link "$LINENO"; then :
+ ac_cv_search_initscr=$ac_res
+fi
+rm -f core conftest.err conftest.$ac_objext \
+ conftest$ac_exeext
+ if ${ac_cv_search_initscr+:} false; then :
+ break
+fi
+done
+if ${ac_cv_search_initscr+:} false; then :
+
+else
+ ac_cv_search_initscr=no
+fi
+rm conftest.$ac_ext
+LIBS=$ac_func_search_save_LIBS
+fi
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_initscr" >&5
+$as_echo "$ac_cv_search_initscr" >&6; }
+ac_res=$ac_cv_search_initscr
+if test "$ac_res" != no; then :
+ test "$ac_res" = "none required" || LIBS="$ac_res $LIBS"
+
+else
+ as_fn_error $? "*** Missing ncurses library. -lncurses" "$LINENO" 5
+fi
+
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing wattr_on" >&5
+$as_echo_n "checking for library containing wattr_on... " >&6; }
+if ${ac_cv_search_wattr_on+:} false; then :
+ $as_echo_n "(cached) " >&6
+else
+ ac_func_search_save_LIBS=$LIBS
+cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h. */
+
+/* Override any GCC internal prototype to avoid an error.
+ Use char because int might match the return type of a GCC
+ builtin and then its argument prototype would still apply. */
+#ifdef __cplusplus
+extern "C"
+#endif
+char wattr_on ();
+int
+main ()
+{
+return wattr_on ();
+ ;
+ return 0;
+}
+_ACEOF
+for ac_lib in '' ncurses; do
+ if test -z "$ac_lib"; then
+ ac_res="none required"
+ else
+ ac_res=-l$ac_lib
+ LIBS="-l$ac_lib $ac_func_search_save_LIBS"
+ fi
+ if ac_fn_c_try_link "$LINENO"; then :
+ ac_cv_search_wattr_on=$ac_res
+fi
+rm -f core conftest.err conftest.$ac_objext \
+ conftest$ac_exeext
+ if ${ac_cv_search_wattr_on+:} false; then :
+ break
+fi
+done
+if ${ac_cv_search_wattr_on+:} false; then :
+
+else
+ ac_cv_search_wattr_on=no
+fi
+rm conftest.$ac_ext
+LIBS=$ac_func_search_save_LIBS
+fi
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_wattr_on" >&5
+$as_echo "$ac_cv_search_wattr_on" >&6; }
+ac_res=$ac_cv_search_wattr_on
+if test "$ac_res" != no; then :
+ test "$ac_res" = "none required" || LIBS="$ac_res $LIBS"
+
+else
+ as_fn_error $? "*** Missing ncurses library. -lncurses" "$LINENO" 5
+fi
+
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing wattr_off" >&5
+$as_echo_n "checking for library containing wattr_off... " >&6; }
+if ${ac_cv_search_wattr_off+:} false; then :
+ $as_echo_n "(cached) " >&6
+else
+ ac_func_search_save_LIBS=$LIBS
+cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h. */
+
+/* Override any GCC internal prototype to avoid an error.
+ Use char because int might match the return type of a GCC
+ builtin and then its argument prototype would still apply. */
+#ifdef __cplusplus
+extern "C"
+#endif
+char wattr_off ();
+int
+main ()
+{
+return wattr_off ();
+ ;
+ return 0;
+}
+_ACEOF
+for ac_lib in '' ncurses; do
+ if test -z "$ac_lib"; then
+ ac_res="none required"
+ else
+ ac_res=-l$ac_lib
+ LIBS="-l$ac_lib $ac_func_search_save_LIBS"
+ fi
+ if ac_fn_c_try_link "$LINENO"; then :
+ ac_cv_search_wattr_off=$ac_res
+fi
+rm -f core conftest.err conftest.$ac_objext \
+ conftest$ac_exeext
+ if ${ac_cv_search_wattr_off+:} false; then :
+ break
+fi
+done
+if ${ac_cv_search_wattr_off+:} false; then :
+
+else
+ ac_cv_search_wattr_off=no
+fi
+rm conftest.$ac_ext
+LIBS=$ac_func_search_save_LIBS
+fi
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_wattr_off" >&5
+$as_echo "$ac_cv_search_wattr_off" >&6; }
+ac_res=$ac_cv_search_wattr_off
+if test "$ac_res" != no; then :
+ test "$ac_res" = "none required" || LIBS="$ac_res $LIBS"
+
+else
+ as_fn_error $? "*** Missing ncurses library. -lncurses" "$LINENO" 5
+fi
+
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing mvprintw" >&5
+$as_echo_n "checking for library containing mvprintw... " >&6; }
+if ${ac_cv_search_mvprintw+:} false; then :
+ $as_echo_n "(cached) " >&6
+else
+ ac_func_search_save_LIBS=$LIBS
+cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h. */
+
+/* Override any GCC internal prototype to avoid an error.
+ Use char because int might match the return type of a GCC
+ builtin and then its argument prototype would still apply. */
+#ifdef __cplusplus
+extern "C"
+#endif
+char mvprintw ();
+int
+main ()
+{
+return mvprintw ();
+ ;
+ return 0;
+}
+_ACEOF
+for ac_lib in '' ncurses; do
+ if test -z "$ac_lib"; then
+ ac_res="none required"
+ else
+ ac_res=-l$ac_lib
+ LIBS="-l$ac_lib $ac_func_search_save_LIBS"
+ fi
+ if ac_fn_c_try_link "$LINENO"; then :
+ ac_cv_search_mvprintw=$ac_res
+fi
+rm -f core conftest.err conftest.$ac_objext \
+ conftest$ac_exeext
+ if ${ac_cv_search_mvprintw+:} false; then :
+ break
+fi
+done
+if ${ac_cv_search_mvprintw+:} false; then :
+
+else
+ ac_cv_search_mvprintw=no
+fi
+rm conftest.$ac_ext
+LIBS=$ac_func_search_save_LIBS
+fi
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_mvprintw" >&5
+$as_echo "$ac_cv_search_mvprintw" >&6; }
+ac_res=$ac_cv_search_mvprintw
+if test "$ac_res" != no; then :
+ test "$ac_res" = "none required" || LIBS="$ac_res $LIBS"
+
+else
+ as_fn_error $? "*** Missing ncurses library. -lncurses" "$LINENO" 5
+fi
+
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing mvwprintw" >&5
+$as_echo_n "checking for library containing mvwprintw... " >&6; }
+if ${ac_cv_search_mvwprintw+:} false; then :
+ $as_echo_n "(cached) " >&6
+else
+ ac_func_search_save_LIBS=$LIBS
+cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h. */
+
+/* Override any GCC internal prototype to avoid an error.
+ Use char because int might match the return type of a GCC
+ builtin and then its argument prototype would still apply. */
+#ifdef __cplusplus
+extern "C"
+#endif
+char mvwprintw ();
+int
+main ()
+{
+return mvwprintw ();
+ ;
+ return 0;
+}
+_ACEOF
+for ac_lib in '' ncurses; do
+ if test -z "$ac_lib"; then
+ ac_res="none required"
+ else
+ ac_res=-l$ac_lib
+ LIBS="-l$ac_lib $ac_func_search_save_LIBS"
+ fi
+ if ac_fn_c_try_link "$LINENO"; then :
+ ac_cv_search_mvwprintw=$ac_res
+fi
+rm -f core conftest.err conftest.$ac_objext \
+ conftest$ac_exeext
+ if ${ac_cv_search_mvwprintw+:} false; then :
+ break
+fi
+done
+if ${ac_cv_search_mvwprintw+:} false; then :
+
+else
+ ac_cv_search_mvwprintw=no
+fi
+rm conftest.$ac_ext
+LIBS=$ac_func_search_save_LIBS
+fi
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_mvwprintw" >&5
+$as_echo "$ac_cv_search_mvwprintw" >&6; }
+ac_res=$ac_cv_search_mvwprintw
+if test "$ac_res" != no; then :
+ test "$ac_res" = "none required" || LIBS="$ac_res $LIBS"
+
+else
+ as_fn_error $? "*** Missing ncurses library. -lncurses" "$LINENO" 5
+fi
+
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing wmove" >&5
+$as_echo_n "checking for library containing wmove... " >&6; }
+if ${ac_cv_search_wmove+:} false; then :
+ $as_echo_n "(cached) " >&6
+else
+ ac_func_search_save_LIBS=$LIBS
+cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h. */
+
+/* Override any GCC internal prototype to avoid an error.
+ Use char because int might match the return type of a GCC
+ builtin and then its argument prototype would still apply. */
+#ifdef __cplusplus
+extern "C"
+#endif
+char wmove ();
+int
+main ()
+{
+return wmove ();
+ ;
+ return 0;
+}
+_ACEOF
+for ac_lib in '' ncurses; do
+ if test -z "$ac_lib"; then
+ ac_res="none required"
+ else
+ ac_res=-l$ac_lib
+ LIBS="-l$ac_lib $ac_func_search_save_LIBS"
+ fi
+ if ac_fn_c_try_link "$LINENO"; then :
+ ac_cv_search_wmove=$ac_res
+fi
+rm -f core conftest.err conftest.$ac_objext \
+ conftest$ac_exeext
+ if ${ac_cv_search_wmove+:} false; then :
+ break
+fi
+done
+if ${ac_cv_search_wmove+:} false; then :
+
+else
+ ac_cv_search_wmove=no
+fi
+rm conftest.$ac_ext
+LIBS=$ac_func_search_save_LIBS
+fi
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_wmove" >&5
+$as_echo "$ac_cv_search_wmove" >&6; }
+ac_res=$ac_cv_search_wmove
+if test "$ac_res" != no; then :
+ test "$ac_res" = "none required" || LIBS="$ac_res $LIBS"
+
+else
+ as_fn_error $? "*** Missing ncurses library. -lncurses" "$LINENO" 5
+fi
+
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing wgetch" >&5
+$as_echo_n "checking for library containing wgetch... " >&6; }
+if ${ac_cv_search_wgetch+:} false; then :
+ $as_echo_n "(cached) " >&6
+else
+ ac_func_search_save_LIBS=$LIBS
+cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h. */
+
+/* Override any GCC internal prototype to avoid an error.
+ Use char because int might match the return type of a GCC
+ builtin and then its argument prototype would still apply. */
+#ifdef __cplusplus
+extern "C"
+#endif
+char wgetch ();
+int
+main ()
+{
+return wgetch ();
+ ;
+ return 0;
+}
+_ACEOF
+for ac_lib in '' ncurses; do
+ if test -z "$ac_lib"; then
+ ac_res="none required"
+ else
+ ac_res=-l$ac_lib
+ LIBS="-l$ac_lib $ac_func_search_save_LIBS"
+ fi
+ if ac_fn_c_try_link "$LINENO"; then :
+ ac_cv_search_wgetch=$ac_res
+fi
+rm -f core conftest.err conftest.$ac_objext \
+ conftest$ac_exeext
+ if ${ac_cv_search_wgetch+:} false; then :
+ break
+fi
+done
+if ${ac_cv_search_wgetch+:} false; then :
+
+else
+ ac_cv_search_wgetch=no
+fi
+rm conftest.$ac_ext
+LIBS=$ac_func_search_save_LIBS
+fi
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_wgetch" >&5
+$as_echo "$ac_cv_search_wgetch" >&6; }
+ac_res=$ac_cv_search_wgetch
+if test "$ac_res" != no; then :
+ test "$ac_res" = "none required" || LIBS="$ac_res $LIBS"
+
+else
+ as_fn_error $? "*** Missing ncurses library. -lncurses" "$LINENO" 5
+fi
+
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing wtimeout" >&5
+$as_echo_n "checking for library containing wtimeout... " >&6; }
+if ${ac_cv_search_wtimeout+:} false; then :
+ $as_echo_n "(cached) " >&6
+else
+ ac_func_search_save_LIBS=$LIBS
+cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h. */
+
+/* Override any GCC internal prototype to avoid an error.
+ Use char because int might match the return type of a GCC
+ builtin and then its argument prototype would still apply. */
+#ifdef __cplusplus
+extern "C"
+#endif
+char wtimeout ();
+int
+main ()
+{
+return wtimeout ();
+ ;
+ return 0;
+}
+_ACEOF
+for ac_lib in '' ncurses; do
+ if test -z "$ac_lib"; then
+ ac_res="none required"
+ else
+ ac_res=-l$ac_lib
+ LIBS="-l$ac_lib $ac_func_search_save_LIBS"
+ fi
+ if ac_fn_c_try_link "$LINENO"; then :
+ ac_cv_search_wtimeout=$ac_res
+fi
+rm -f core conftest.err conftest.$ac_objext \
+ conftest$ac_exeext
+ if ${ac_cv_search_wtimeout+:} false; then :
+ break
+fi
+done
+if ${ac_cv_search_wtimeout+:} false; then :
+
+else
+ ac_cv_search_wtimeout=no
+fi
+rm conftest.$ac_ext
+LIBS=$ac_func_search_save_LIBS
+fi
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_wtimeout" >&5
+$as_echo "$ac_cv_search_wtimeout" >&6; }
+ac_res=$ac_cv_search_wtimeout
+if test "$ac_res" != no; then :
+ test "$ac_res" = "none required" || LIBS="$ac_res $LIBS"
+
+else
+ as_fn_error $? "*** Missing ncurses library. -lncurses" "$LINENO" 5
+fi
+
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing wrefresh" >&5
+$as_echo_n "checking for library containing wrefresh... " >&6; }
+if ${ac_cv_search_wrefresh+:} false; then :
+ $as_echo_n "(cached) " >&6
+else
+ ac_func_search_save_LIBS=$LIBS
+cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h. */
+
+/* Override any GCC internal prototype to avoid an error.
+ Use char because int might match the return type of a GCC
+ builtin and then its argument prototype would still apply. */
+#ifdef __cplusplus
+extern "C"
+#endif
+char wrefresh ();
+int
+main ()
+{
+return wrefresh ();
+ ;
+ return 0;
+}
+_ACEOF
+for ac_lib in '' ncurses; do
+ if test -z "$ac_lib"; then
+ ac_res="none required"
+ else
+ ac_res=-l$ac_lib
+ LIBS="-l$ac_lib $ac_func_search_save_LIBS"
+ fi
+ if ac_fn_c_try_link "$LINENO"; then :
+ ac_cv_search_wrefresh=$ac_res
+fi
+rm -f core conftest.err conftest.$ac_objext \
+ conftest$ac_exeext
+ if ${ac_cv_search_wrefresh+:} false; then :
+ break
+fi
+done
+if ${ac_cv_search_wrefresh+:} false; then :
+
+else
+ ac_cv_search_wrefresh=no
+fi
+rm conftest.$ac_ext
+LIBS=$ac_func_search_save_LIBS
+fi
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_wrefresh" >&5
+$as_echo "$ac_cv_search_wrefresh" >&6; }
+ac_res=$ac_cv_search_wrefresh
+if test "$ac_res" != no; then :
+ test "$ac_res" = "none required" || LIBS="$ac_res $LIBS"
+
+else
+ as_fn_error $? "*** Missing ncurses library. -lncurses" "$LINENO" 5
+fi
+
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing pthread_create" >&5
+$as_echo_n "checking for library containing pthread_create... " >&6; }
+if ${ac_cv_search_pthread_create+:} false; then :
+ $as_echo_n "(cached) " >&6
+else
+ ac_func_search_save_LIBS=$LIBS
+cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h. */
+
+/* Override any GCC internal prototype to avoid an error.
+ Use char because int might match the return type of a GCC
+ builtin and then its argument prototype would still apply. */
+#ifdef __cplusplus
+extern "C"
+#endif
+char pthread_create ();
+int
+main ()
+{
+return pthread_create ();
+ ;
+ return 0;
+}
+_ACEOF
+for ac_lib in '' pthread; do
+ if test -z "$ac_lib"; then
+ ac_res="none required"
+ else
+ ac_res=-l$ac_lib
+ LIBS="-l$ac_lib $ac_func_search_save_LIBS"
+ fi
+ if ac_fn_c_try_link "$LINENO"; then :
+ ac_cv_search_pthread_create=$ac_res
+fi
+rm -f core conftest.err conftest.$ac_objext \
+ conftest$ac_exeext
+ if ${ac_cv_search_pthread_create+:} false; then :
+ break
+fi
+done
+if ${ac_cv_search_pthread_create+:} false; then :
+
+else
+ ac_cv_search_pthread_create=no
+fi
+rm conftest.$ac_ext
+LIBS=$ac_func_search_save_LIBS
+fi
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_pthread_create" >&5
+$as_echo "$ac_cv_search_pthread_create" >&6; }
+ac_res=$ac_cv_search_pthread_create
+if test "$ac_res" != no; then :
+ test "$ac_res" = "none required" || LIBS="$ac_res $LIBS"
+
+else
+ as_fn_error $? "*** Missing posix threads library. -lpthread" "$LINENO" 5
+fi
+
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing pthread_join" >&5
+$as_echo_n "checking for library containing pthread_join... " >&6; }
+if ${ac_cv_search_pthread_join+:} false; then :
+ $as_echo_n "(cached) " >&6
+else
+ ac_func_search_save_LIBS=$LIBS
+cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h. */
+
+/* Override any GCC internal prototype to avoid an error.
+ Use char because int might match the return type of a GCC
+ builtin and then its argument prototype would still apply. */
+#ifdef __cplusplus
+extern "C"
+#endif
+char pthread_join ();
+int
+main ()
+{
+return pthread_join ();
+ ;
+ return 0;
+}
+_ACEOF
+for ac_lib in '' pthread; do
+ if test -z "$ac_lib"; then
+ ac_res="none required"
+ else
+ ac_res=-l$ac_lib
+ LIBS="-l$ac_lib $ac_func_search_save_LIBS"
+ fi
+ if ac_fn_c_try_link "$LINENO"; then :
+ ac_cv_search_pthread_join=$ac_res
+fi
+rm -f core conftest.err conftest.$ac_objext \
+ conftest$ac_exeext
+ if ${ac_cv_search_pthread_join+:} false; then :
+ break
+fi
+done
+if ${ac_cv_search_pthread_join+:} false; then :
+
+else
+ ac_cv_search_pthread_join=no
+fi
+rm conftest.$ac_ext
+LIBS=$ac_func_search_save_LIBS
+fi
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_pthread_join" >&5
+$as_echo "$ac_cv_search_pthread_join" >&6; }
+ac_res=$ac_cv_search_pthread_join
+if test "$ac_res" != no; then :
+ test "$ac_res" = "none required" || LIBS="$ac_res $LIBS"
+
+else
+ as_fn_error $? "*** Missing posix threads library. -lpthread" "$LINENO" 5
+fi
+
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing pthread_mutex_lock" >&5
+$as_echo_n "checking for library containing pthread_mutex_lock... " >&6; }
+if ${ac_cv_search_pthread_mutex_lock+:} false; then :
+ $as_echo_n "(cached) " >&6
+else
+ ac_func_search_save_LIBS=$LIBS
+cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h. */
+
+/* Override any GCC internal prototype to avoid an error.
+ Use char because int might match the return type of a GCC
+ builtin and then its argument prototype would still apply. */
+#ifdef __cplusplus
+extern "C"
+#endif
+char pthread_mutex_lock ();
+int
+main ()
+{
+return pthread_mutex_lock ();
+ ;
+ return 0;
+}
+_ACEOF
+for ac_lib in '' pthread; do
+ if test -z "$ac_lib"; then
+ ac_res="none required"
+ else
+ ac_res=-l$ac_lib
+ LIBS="-l$ac_lib $ac_func_search_save_LIBS"
+ fi
+ if ac_fn_c_try_link "$LINENO"; then :
+ ac_cv_search_pthread_mutex_lock=$ac_res
+fi
+rm -f core conftest.err conftest.$ac_objext \
+ conftest$ac_exeext
+ if ${ac_cv_search_pthread_mutex_lock+:} false; then :
+ break
+fi
+done
+if ${ac_cv_search_pthread_mutex_lock+:} false; then :
+
+else
+ ac_cv_search_pthread_mutex_lock=no
+fi
+rm conftest.$ac_ext
+LIBS=$ac_func_search_save_LIBS
+fi
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_pthread_mutex_lock" >&5
+$as_echo "$ac_cv_search_pthread_mutex_lock" >&6; }
+ac_res=$ac_cv_search_pthread_mutex_lock
+if test "$ac_res" != no; then :
+ test "$ac_res" = "none required" || LIBS="$ac_res $LIBS"
+
+else
+ as_fn_error $? "*** Missing posix threads library. -lpthread" "$LINENO" 5
+fi
+
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing pthread_mutex_unlock" >&5
+$as_echo_n "checking for library containing pthread_mutex_unlock... " >&6; }
+if ${ac_cv_search_pthread_mutex_unlock+:} false; then :
+ $as_echo_n "(cached) " >&6
+else
+ ac_func_search_save_LIBS=$LIBS
+cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h. */
+
+/* Override any GCC internal prototype to avoid an error.
+ Use char because int might match the return type of a GCC
+ builtin and then its argument prototype would still apply. */
+#ifdef __cplusplus
+extern "C"
+#endif
+char pthread_mutex_unlock ();
+int
+main ()
+{
+return pthread_mutex_unlock ();
+ ;
+ return 0;
+}
+_ACEOF
+for ac_lib in '' pthread; do
+ if test -z "$ac_lib"; then
+ ac_res="none required"
+ else
+ ac_res=-l$ac_lib
+ LIBS="-l$ac_lib $ac_func_search_save_LIBS"
+ fi
+ if ac_fn_c_try_link "$LINENO"; then :
+ ac_cv_search_pthread_mutex_unlock=$ac_res
+fi
+rm -f core conftest.err conftest.$ac_objext \
+ conftest$ac_exeext
+ if ${ac_cv_search_pthread_mutex_unlock+:} false; then :
+ break
+fi
+done
+if ${ac_cv_search_pthread_mutex_unlock+:} false; then :
+
+else
+ ac_cv_search_pthread_mutex_unlock=no
+fi
+rm conftest.$ac_ext
+LIBS=$ac_func_search_save_LIBS
+fi
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_pthread_mutex_unlock" >&5
+$as_echo "$ac_cv_search_pthread_mutex_unlock" >&6; }
+ac_res=$ac_cv_search_pthread_mutex_unlock
+if test "$ac_res" != no; then :
+ test "$ac_res" = "none required" || LIBS="$ac_res $LIBS"
+
+else
+ as_fn_error $? "*** Missing posix threads library. -lpthread" "$LINENO" 5
+fi
+
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing pthread_cond_timedwait" >&5
+$as_echo_n "checking for library containing pthread_cond_timedwait... " >&6; }
+if ${ac_cv_search_pthread_cond_timedwait+:} false; then :
+ $as_echo_n "(cached) " >&6
+else
+ ac_func_search_save_LIBS=$LIBS
+cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h. */
+
+/* Override any GCC internal prototype to avoid an error.
+ Use char because int might match the return type of a GCC
+ builtin and then its argument prototype would still apply. */
+#ifdef __cplusplus
+extern "C"
+#endif
+char pthread_cond_timedwait ();
+int
+main ()
+{
+return pthread_cond_timedwait ();
+ ;
+ return 0;
+}
+_ACEOF
+for ac_lib in '' pthread; do
+ if test -z "$ac_lib"; then
+ ac_res="none required"
+ else
+ ac_res=-l$ac_lib
+ LIBS="-l$ac_lib $ac_func_search_save_LIBS"
+ fi
+ if ac_fn_c_try_link "$LINENO"; then :
+ ac_cv_search_pthread_cond_timedwait=$ac_res
+fi
+rm -f core conftest.err conftest.$ac_objext \
+ conftest$ac_exeext
+ if ${ac_cv_search_pthread_cond_timedwait+:} false; then :
+ break
+fi
+done
+if ${ac_cv_search_pthread_cond_timedwait+:} false; then :
+
+else
+ ac_cv_search_pthread_cond_timedwait=no
+fi
+rm conftest.$ac_ext
+LIBS=$ac_func_search_save_LIBS
+fi
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_pthread_cond_timedwait" >&5
+$as_echo "$ac_cv_search_pthread_cond_timedwait" >&6; }
+ac_res=$ac_cv_search_pthread_cond_timedwait
+if test "$ac_res" != no; then :
+ test "$ac_res" = "none required" || LIBS="$ac_res $LIBS"
+
+else
+ as_fn_error $? "*** Missing posix threads library. -lpthread" "$LINENO" 5
+fi
+
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing pthread_cond_signal" >&5
+$as_echo_n "checking for library containing pthread_cond_signal... " >&6; }
+if ${ac_cv_search_pthread_cond_signal+:} false; then :
+ $as_echo_n "(cached) " >&6
+else
+ ac_func_search_save_LIBS=$LIBS
+cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h. */
+
+/* Override any GCC internal prototype to avoid an error.
+ Use char because int might match the return type of a GCC
+ builtin and then its argument prototype would still apply. */
+#ifdef __cplusplus
+extern "C"
+#endif
+char pthread_cond_signal ();
+int
+main ()
+{
+return pthread_cond_signal ();
+ ;
+ return 0;
+}
+_ACEOF
+for ac_lib in '' pthread; do
+ if test -z "$ac_lib"; then
+ ac_res="none required"
+ else
+ ac_res=-l$ac_lib
+ LIBS="-l$ac_lib $ac_func_search_save_LIBS"
+ fi
+ if ac_fn_c_try_link "$LINENO"; then :
+ ac_cv_search_pthread_cond_signal=$ac_res
+fi
+rm -f core conftest.err conftest.$ac_objext \
+ conftest$ac_exeext
+ if ${ac_cv_search_pthread_cond_signal+:} false; then :
+ break
+fi
+done
+if ${ac_cv_search_pthread_cond_signal+:} false; then :
+
+else
+ ac_cv_search_pthread_cond_signal=no
+fi
+rm conftest.$ac_ext
+LIBS=$ac_func_search_save_LIBS
+fi
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_pthread_cond_signal" >&5
+$as_echo "$ac_cv_search_pthread_cond_signal" >&6; }
+ac_res=$ac_cv_search_pthread_cond_signal
+if test "$ac_res" != no; then :
+ test "$ac_res" = "none required" || LIBS="$ac_res $LIBS"
+
+else
+ as_fn_error $? "*** Missing posix threads library. -lpthread" "$LINENO" 5
+fi
+
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing mq_open" >&5
+$as_echo_n "checking for library containing mq_open... " >&6; }
+if ${ac_cv_search_mq_open+:} false; then :
+ $as_echo_n "(cached) " >&6
+else
+ ac_func_search_save_LIBS=$LIBS
+cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h. */
+
+/* Override any GCC internal prototype to avoid an error.
+ Use char because int might match the return type of a GCC
+ builtin and then its argument prototype would still apply. */
+#ifdef __cplusplus
+extern "C"
+#endif
+char mq_open ();
+int
+main ()
+{
+return mq_open ();
+ ;
+ return 0;
+}
+_ACEOF
+for ac_lib in '' rt; do
+ if test -z "$ac_lib"; then
+ ac_res="none required"
+ else
+ ac_res=-l$ac_lib
+ LIBS="-l$ac_lib $ac_func_search_save_LIBS"
+ fi
+ if ac_fn_c_try_link "$LINENO"; then :
+ ac_cv_search_mq_open=$ac_res
+fi
+rm -f core conftest.err conftest.$ac_objext \
+ conftest$ac_exeext
+ if ${ac_cv_search_mq_open+:} false; then :
+ break
+fi
+done
+if ${ac_cv_search_mq_open+:} false; then :
+
+else
+ ac_cv_search_mq_open=no
+fi
+rm conftest.$ac_ext
+LIBS=$ac_func_search_save_LIBS
+fi
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_mq_open" >&5
+$as_echo "$ac_cv_search_mq_open" >&6; }
+ac_res=$ac_cv_search_mq_open
+if test "$ac_res" != no; then :
+ test "$ac_res" = "none required" || LIBS="$ac_res $LIBS"
+
+else
+ as_fn_error $? "*** Missing posix ipc library. -lrt" "$LINENO" 5
+fi
+
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing mq_close" >&5
+$as_echo_n "checking for library containing mq_close... " >&6; }
+if ${ac_cv_search_mq_close+:} false; then :
+ $as_echo_n "(cached) " >&6
+else
+ ac_func_search_save_LIBS=$LIBS
+cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h. */
+
+/* Override any GCC internal prototype to avoid an error.
+ Use char because int might match the return type of a GCC
+ builtin and then its argument prototype would still apply. */
+#ifdef __cplusplus
+extern "C"
+#endif
+char mq_close ();
+int
+main ()
+{
+return mq_close ();
+ ;
+ return 0;
+}
+_ACEOF
+for ac_lib in '' rt; do
+ if test -z "$ac_lib"; then
+ ac_res="none required"
+ else
+ ac_res=-l$ac_lib
+ LIBS="-l$ac_lib $ac_func_search_save_LIBS"
+ fi
+ if ac_fn_c_try_link "$LINENO"; then :
+ ac_cv_search_mq_close=$ac_res
+fi
+rm -f core conftest.err conftest.$ac_objext \
+ conftest$ac_exeext
+ if ${ac_cv_search_mq_close+:} false; then :
+ break
+fi
+done
+if ${ac_cv_search_mq_close+:} false; then :
+
+else
+ ac_cv_search_mq_close=no
+fi
+rm conftest.$ac_ext
+LIBS=$ac_func_search_save_LIBS
+fi
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_mq_close" >&5
+$as_echo "$ac_cv_search_mq_close" >&6; }
+ac_res=$ac_cv_search_mq_close
+if test "$ac_res" != no; then :
+ test "$ac_res" = "none required" || LIBS="$ac_res $LIBS"
+
+else
+ as_fn_error $? "*** Missing posix ipc library. -lrt" "$LINENO" 5
+fi
+
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing mq_unlink" >&5
+$as_echo_n "checking for library containing mq_unlink... " >&6; }
+if ${ac_cv_search_mq_unlink+:} false; then :
+ $as_echo_n "(cached) " >&6
+else
+ ac_func_search_save_LIBS=$LIBS
+cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h. */
+
+/* Override any GCC internal prototype to avoid an error.
+ Use char because int might match the return type of a GCC
+ builtin and then its argument prototype would still apply. */
+#ifdef __cplusplus
+extern "C"
+#endif
+char mq_unlink ();
+int
+main ()
+{
+return mq_unlink ();
+ ;
+ return 0;
+}
+_ACEOF
+for ac_lib in '' rt; do
+ if test -z "$ac_lib"; then
+ ac_res="none required"
+ else
+ ac_res=-l$ac_lib
+ LIBS="-l$ac_lib $ac_func_search_save_LIBS"
+ fi
+ if ac_fn_c_try_link "$LINENO"; then :
+ ac_cv_search_mq_unlink=$ac_res
+fi
+rm -f core conftest.err conftest.$ac_objext \
+ conftest$ac_exeext
+ if ${ac_cv_search_mq_unlink+:} false; then :
+ break
+fi
+done
+if ${ac_cv_search_mq_unlink+:} false; then :
+
+else
+ ac_cv_search_mq_unlink=no
+fi
+rm conftest.$ac_ext
+LIBS=$ac_func_search_save_LIBS
+fi
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_mq_unlink" >&5
+$as_echo "$ac_cv_search_mq_unlink" >&6; }
+ac_res=$ac_cv_search_mq_unlink
+if test "$ac_res" != no; then :
+ test "$ac_res" = "none required" || LIBS="$ac_res $LIBS"
+
+else
+ as_fn_error $? "*** Missing posix ipc library. -lrt" "$LINENO" 5
+fi
+
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing clock_gettime" >&5
+$as_echo_n "checking for library containing clock_gettime... " >&6; }
+if ${ac_cv_search_clock_gettime+:} false; then :
+ $as_echo_n "(cached) " >&6
+else
+ ac_func_search_save_LIBS=$LIBS
+cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h. */
+
+/* Override any GCC internal prototype to avoid an error.
+ Use char because int might match the return type of a GCC
+ builtin and then its argument prototype would still apply. */
+#ifdef __cplusplus
+extern "C"
+#endif
+char clock_gettime ();
+int
+main ()
+{
+return clock_gettime ();
+ ;
+ return 0;
+}
+_ACEOF
+for ac_lib in '' rt; do
+ if test -z "$ac_lib"; then
+ ac_res="none required"
+ else
+ ac_res=-l$ac_lib
+ LIBS="-l$ac_lib $ac_func_search_save_LIBS"
+ fi
+ if ac_fn_c_try_link "$LINENO"; then :
+ ac_cv_search_clock_gettime=$ac_res
+fi
+rm -f core conftest.err conftest.$ac_objext \
+ conftest$ac_exeext
+ if ${ac_cv_search_clock_gettime+:} false; then :
+ break
+fi
+done
+if ${ac_cv_search_clock_gettime+:} false; then :
+
+else
+ ac_cv_search_clock_gettime=no
+fi
+rm conftest.$ac_ext
+LIBS=$ac_func_search_save_LIBS
+fi
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_clock_gettime" >&5
+$as_echo "$ac_cv_search_clock_gettime" >&6; }
+ac_res=$ac_cv_search_clock_gettime
+if test "$ac_res" != no; then :
+ test "$ac_res" = "none required" || LIBS="$ac_res $LIBS"
+
+else
+ as_fn_error $? "*** Missing posix ipc library. -lrt" "$LINENO" 5
+fi
+
+
# Check whether --enable-debug was given.
if test "${enable_debug+set}" = set; then :
enableval=$enable_debug; case "${enableval}" in
@@ -7645,7 +8687,6 @@ fi
$as_echo "#define HAVE_CONFIG 1" >>confdefs.h
-LDFLAGS="${LDFLAGS} -pthread -lrt -lncurses"
ac_config_files="$ac_config_files Makefile src/Makefile"
diff --git a/configure.ac b/configure.ac
index 1f8b21c..4cedeeb 100644
--- a/configure.ac
+++ b/configure.ac
@@ -12,15 +12,13 @@ AC_CANONICAL_BUILD
AC_CANONICAL_HOST
AC_CONFIG_SRCDIR([src/aconfig.h.in])
AC_CONFIG_HEADER([src/aconfig.h])
-AC_CONFIG_MACRO_DIR([m4])
AC_USE_SYSTEM_EXTENSIONS
-CFLAGS=""
-LDFLAGS=""
# Checks for programs.
AM_PROG_AR
AM_PROG_INSTALL_STRIP
AC_PROG_CC
+AM_PROG_CC_C_O
AC_PROG_INSTALL
AC_PROG_RANLIB
AC_C_INLINE
@@ -35,7 +33,7 @@ AC_HEADER_STDC
AC_HEADER_STAT
AC_HEADER_DIRENT
AC_HEADER_ASSERT
-AC_CHECK_HEADERS([stdio.h stdlib.h stdbool.h string.h unistd.h errno.h sys/stat.h sys/types.h sys/wait.h fcntl.h semaphore.h time.h mqueue.h syslog.h],[],[AC_MSG_ERROR([*** missing essential header files])])
+AC_CHECK_HEADERS([glob.h stdio.h stdlib.h stdbool.h string.h unistd.h errno.h sys/stat.h sys/types.h sys/wait.h fcntl.h semaphore.h time.h mqueue.h syslog.h],[],[AC_MSG_ERROR([*** missing essential header files])])
# Checks for typedefs, structures, and compiler characteristics.
AC_COMPUTE_INT
@@ -46,8 +44,8 @@ AC_TYPE_SIZE_T
AC_TYPE_SSIZE_T
AC_TYPE_UINT16_T
AC_TYPE_UINT8_T
-AX_CHECK_TYPEDEF([size_t], [stdio.h],,[AC_MSG_ERROR([*** Missing size_t typedef in stdio.h])])
-AX_CHECK_TYPEDEF([ssize_t], [stdio.h],,[AC_MSG_ERROR([*** Missing size_t typedef in stdio.h])])
+AC_CHECK_TYPE(size_t, unsigned int)
+AC_CHECK_TYPE(ssize_t, unsigned int)
# Checks for library functions.
AC_FUNC_FORK
@@ -58,9 +56,28 @@ AC_FUNC_STRNLEN
AC_FUNC_STAT
AC_FUNC_MKTIME
AC_FUNC_VPRINTF
-AC_CHECK_FUNCS([clock_gettime],,)
AC_CHECK_FUNCS([asprintf system printf fprintf mkfifo stat open close fork memmove memcpy memset strdup strndup strerror strstr strlen strnlen strtol openlog vsyslog closelog],,[AC_MSG_ERROR([*** Missing essential functions.])])
+AC_SEARCH_LIBS([initscr], [ncurses],,[AC_MSG_ERROR([*** Missing ncurses library. -lncurses])])
+AC_SEARCH_LIBS([wattr_on], [ncurses],,[AC_MSG_ERROR([*** Missing ncurses library. -lncurses])])
+AC_SEARCH_LIBS([wattr_off], [ncurses],,[AC_MSG_ERROR([*** Missing ncurses library. -lncurses])])
+AC_SEARCH_LIBS([mvprintw], [ncurses],,[AC_MSG_ERROR([*** Missing ncurses library. -lncurses])])
+AC_SEARCH_LIBS([mvwprintw], [ncurses],,[AC_MSG_ERROR([*** Missing ncurses library. -lncurses])])
+AC_SEARCH_LIBS([wmove], [ncurses],,[AC_MSG_ERROR([*** Missing ncurses library. -lncurses])])
+AC_SEARCH_LIBS([wgetch], [ncurses],,[AC_MSG_ERROR([*** Missing ncurses library. -lncurses])])
+AC_SEARCH_LIBS([wtimeout], [ncurses],,[AC_MSG_ERROR([*** Missing ncurses library. -lncurses])])
+AC_SEARCH_LIBS([wrefresh], [ncurses],,[AC_MSG_ERROR([*** Missing ncurses library. -lncurses])])
+AC_SEARCH_LIBS([pthread_create], [pthread],,[AC_MSG_ERROR([*** Missing posix threads library. -lpthread])])
+AC_SEARCH_LIBS([pthread_join], [pthread],,[AC_MSG_ERROR([*** Missing posix threads library. -lpthread])])
+AC_SEARCH_LIBS([pthread_mutex_lock], [pthread],,[AC_MSG_ERROR([*** Missing posix threads library. -lpthread])])
+AC_SEARCH_LIBS([pthread_mutex_unlock], [pthread],,[AC_MSG_ERROR([*** Missing posix threads library. -lpthread])])
+AC_SEARCH_LIBS([pthread_cond_timedwait], [pthread],,[AC_MSG_ERROR([*** Missing posix threads library. -lpthread])])
+AC_SEARCH_LIBS([pthread_cond_signal], [pthread],,[AC_MSG_ERROR([*** Missing posix threads library. -lpthread])])
+AC_SEARCH_LIBS([mq_open], [rt],,[AC_MSG_ERROR([*** Missing posix ipc library. -lrt])])
+AC_SEARCH_LIBS([mq_close], [rt],,[AC_MSG_ERROR([*** Missing posix ipc library. -lrt])])
+AC_SEARCH_LIBS([mq_unlink], [rt],,[AC_MSG_ERROR([*** Missing posix ipc library. -lrt])])
+AC_SEARCH_LIBS([clock_gettime], [rt],,[AC_MSG_ERROR([*** Missing posix ipc library. -lrt])])
+
AC_ARG_ENABLE(debug,
AS_HELP_STRING([--enable-debug],
[enable debugging, default: no]),
@@ -73,7 +90,6 @@ esac],
AM_CONDITIONAL(DEBUG, test x"$debug" = x"true")
AC_DEFINE([HAVE_CONFIG], [1], [Do NOT change THIS!])
-LDFLAGS="${LDFLAGS} -pthread -lrt -lncurses"
AC_SUBST([AM_CFLAGS])
AC_SUBST([AM_LDFLAGS])
AC_CONFIG_FILES([Makefile src/Makefile])
diff --git a/m4/ax_check_typedef.m4 b/m4/ax_check_typedef.m4
deleted file mode 100644
index 13b9d5e..0000000
--- a/m4/ax_check_typedef.m4
+++ /dev/null
@@ -1,76 +0,0 @@
-# ===========================================================================
-# http://www.gnu.org/software/autoconf-archive/ax_check_typedef.html
-# ===========================================================================
-#
-# SYNOPSIS
-#
-# AX_CHECK_TYPEDEF(TYPEDEF, HEADER [, ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND ]])
-#
-# DESCRIPTION
-#
-# Check if the given typedef-name is recognized as a type. The trick is to
-# use a sizeof(TYPEDEF) and see if the compiler is happy with that.
-#
-# This can be thought of as a mixture of AC_CHECK_TYPE(TYPEDEF,DEFAULT)
-# and AC_CHECK_LIB(LIBRARY,FUNCTION,ACTION-IF-FOUND,ACTION-IF-NOT-FOUND).
-#
-# A convenience macro AX_CHECK_TYPEDEF_ is provided that will not emit any
-# message to the user - it just executes one of the actions.
-#
-# LICENSE
-#
-# Copyright (c) 2008 Guido U. Draheim <guidod@gmx.de>
-#
-# This program is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License as published by the
-# Free Software Foundation; either version 3 of the License, or (at your
-# option) any later version.
-#
-# This program is distributed in the hope that it will be useful, but
-# WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
-# Public License for more details.
-#
-# You should have received a copy of the GNU General Public License along
-# with this program. If not, see <http://www.gnu.org/licenses/>.
-#
-# As a special exception, the respective Autoconf Macro's copyright owner
-# gives unlimited permission to copy, distribute and modify the configure
-# scripts that are the output of Autoconf when processing the Macro. You
-# need not follow the terms of the GNU General Public License when using
-# or distributing such scripts, even though portions of the text of the
-# Macro appear in them. The GNU General Public License (GPL) does govern
-# all other use of the material that constitutes the Autoconf Macro.
-#
-# This special exception to the GPL applies to versions of the Autoconf
-# Macro released by the Autoconf Archive. When you make and distribute a
-# modified version of the Autoconf Macro, you may extend this special
-# exception to the GPL to apply to your modified version as well.
-
-#serial 5
-
-AU_ALIAS([AC_CHECK_TYPEDEF], [AX_CHECK_TYPEDEF])
-AC_DEFUN([AX_CHECK_TYPEDEF_],
-[dnl
-ac_lib_var=`echo $1['_']$2 | sed 'y%./+-%__p_%'`
-AC_CACHE_VAL(ac_cv_lib_$ac_lib_var,
-[ eval "ac_cv_type_$ac_lib_var='not-found'"
- ac_cv_check_typedef_header=`echo ifelse([$2], , stddef.h, $2)`
- AC_TRY_COMPILE( [#include <$ac_cv_check_typedef_header>],
- [int x = sizeof($1); x = x;],
- eval "ac_cv_type_$ac_lib_var=yes" ,
- eval "ac_cv_type_$ac_lib_var=no" )
- if test `eval echo '$ac_cv_type_'$ac_lib_var` = "no" ; then
- ifelse([$4], , :, $4)
- else
- ifelse([$3], , :, $3)
- fi
-])])
-
-dnl AX_CHECK_TYPEDEF(TYPEDEF, HEADER [, ACTION-IF-FOUND,
-dnl [, ACTION-IF-NOT-FOUND ]])
-AC_DEFUN([AX_CHECK_TYPEDEF],
-[dnl
- AC_MSG_CHECKING([for $1 in $2])
- AX_CHECK_TYPEDEF_($1,$2,AC_MSG_RESULT(yes),AC_MSG_RESULT(no))dnl
-])
diff --git a/src/Makefile.in b/src/Makefile.in
index 6679195..9ec6a53 100644
--- a/src/Makefile.in
+++ b/src/Makefile.in
@@ -84,8 +84,7 @@ subdir = src
DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \
$(srcdir)/aconfig.h.in $(top_srcdir)/build/depcomp
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
-am__aclocal_m4_deps = $(top_srcdir)/m4/ax_check_typedef.m4 \
- $(top_srcdir)/configure.ac
+am__aclocal_m4_deps = $(top_srcdir)/configure.ac
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
$(ACLOCAL_M4)
mkinstalldirs = $(install_sh) -d
diff --git a/src/aconfig.h.in b/src/aconfig.h.in
index 8dcbf12..4f80ab6 100644
--- a/src/aconfig.h.in
+++ b/src/aconfig.h.in
@@ -6,9 +6,6 @@
/* Define to 1 if you have the `asprintf' function. */
#undef HAVE_ASPRINTF
-/* Define to 1 if you have the `clock_gettime' function. */
-#undef HAVE_CLOCK_GETTIME
-
/* Define to 1 if you have the `close' function. */
#undef HAVE_CLOSE
@@ -40,6 +37,9 @@
/* Define to 1 if you have the `getpagesize' function. */
#undef HAVE_GETPAGESIZE
+/* Define to 1 if you have the <glob.h> header file. */
+#undef HAVE_GLOB_H
+
/* Define to 1 if you have the <inttypes.h> header file. */
#undef HAVE_INTTYPES_H
@@ -287,7 +287,7 @@
/* Define to `unsigned int' if <sys/types.h> does not define. */
#undef size_t
-/* Define to `int' if <sys/types.h> does not define. */
+/* Define to `unsigned int' if <sys/types.h> does not define. */
#undef ssize_t
/* Define to `int' if <sys/types.h> doesn't define. */