Re: Need help with autoconf configure script

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



As a follow up, I've attached the config.log session of when it works and
doesn't work. Is there anything obvious here to anyone?

Thanks,
Bob Rossi

On Tue, Jul 12, 2005 at 09:32:56AM -0400, Bob Rossi wrote:
> Hi again,
> 
> I'm still trying to get CGDB working with autoconf. I've got a very
> strange problem. I have this in my configure.in,
> 
>    if test "$opt_with_readline_prefix" = "no"; then
>    echo "READLINE_PREFIX=NO"
>    else
>    echo "READLINE_PREFIX=YES"
>    VL_LIB_READLINE
>    fi
> 
> I downloaded VL_LIB_READLINE from here,
>   http://autoconf-archive.cryp.to/vl_lib_readline.html
> although I have modified it slightly (see attachment).
> 
> If I run ./configure then by default opt_with_readline_prefix is "no".
> During ../cgdb/configure I get,
>    checking pty.h usability... yes
>    checking pty.h presence... no
>    configure: WARNING: pty.h: accepted by the compiler, rejected by the preprocessor!
>    configure: WARNING: pty.h: proceeding with the compiler's result
>    checking for pty.h... yes
> so I get error's when VL_LIB_READLINE is *not* run.
> 
> If I run ../cgdb/configure --with-readline, then
> opt_with_readline_prefix is not "no". This causes VL_LIB_READLINE to
> run. When this happens, I get,
> 
>    checking pty.h usability... yes
>    checking pty.h presence... yes
>    checking for pty.h... yes
> 
> I can't figure out why I'm getting error's when VL_LIB_READLINE is not
> run. Any help would be greatly appreciated. I've attached the slightly
> modified version of VL_LIB_READLINE that I am using.
> 
> Thanks,
> Bob Rossi

> dnl Available from the GNU Autoconf Macro Archive at:
> dnl http://www.gnu.org/software/ac-archive/htmldoc/vl_lib_readline.html
> dnl
> AC_DEFUN([VL_LIB_READLINE], [
>   AC_CACHE_CHECK([for a readline compatible library],
>                  vl_cv_lib_readline, [
>     ORIG_LIBS="$LIBS"
>     for readline_lib in readline; do
>       for termcap_lib in "" termcap ncurses curses; do
>         if test -z "$termcap_lib"; then
>           TRY_LIB="-l$readline_lib"
>         else
>           TRY_LIB="-l$readline_lib -l$termcap_lib"
>         fi
>         LIBS="$ORIG_LIBS $TRY_LIB"
>         AC_TRY_LINK_FUNC(readline, vl_cv_lib_readline="$TRY_LIB")
>         if test -n "$vl_cv_lib_readline"; then
>           break
>         fi
>       done
>       if test -n "$vl_cv_lib_readline"; then
>         break
>       fi
>     done
>     if test -z "$vl_cv_lib_readline"; then
>       vl_cv_lib_readline="no"
>       LIBS="$ORIG_LIBS"
>     fi
>   ])
> 
>   have_readline=no
>   if test "$vl_cv_lib_readline" != "no"; then
>     have_readline=yes
>     AC_DEFINE(HAVE_LIBREADLINE, 1,
>               [Define if you have a readline compatible library])
>     AC_CHECK_HEADERS(readline.h readline/readline.h)
>     AC_CACHE_CHECK([whether readline supports history],
>                    vl_cv_lib_readline_history, [
>       vl_cv_lib_readline_history="no"
>       AC_TRY_LINK_FUNC(add_history, vl_cv_lib_readline_history="yes")
>     ])
>     have_history=no
>     if test "$vl_cv_lib_readline_history" = "yes"; then
>       have_history=yes
>       AC_DEFINE(HAVE_READLINE_HISTORY, 1,
>                 [Define if your readline library has \`add_history'])
>       AC_CHECK_HEADERS(history.h readline/history.h)
>     fi
>   fi
> 
> dnl Here we need to quit if there is no readline available
>     if test $have_readline = no; then
>         AC_MSG_ERROR([   *****************************************************
>                      cgdb requires the GNU readline library to link!
>                      *****************************************************])
>     fi
> 
> dnl Here we need to quit if there is no history available
>     if test $have_history = no; then
>         AC_MSG_ERROR([   *****************************************************
>                      cgdb requires the GNU readline history library to link!
>                      *****************************************************])
>     fi
> ])dnl

> _______________________________________________
> Autoconf mailing list
> Autoconf@xxxxxxx
> http://lists.gnu.org/mailman/listinfo/autoconf

--- config.log.works	2005-07-12 10:57:48.000000000 -0400
+++ config.log.borked	2005-07-12 10:57:48.000000000 -0400
@@ -4,7 +4,7 @@
 It was created by configure, which was
 generated by GNU Autoconf 2.59.  Invocation command line was
 
-  $ ../cgdb/configure --with-readline
+  $ ../cgdb/configure 
 
 ## --------- ##
 ## Platform. ##
@@ -159,20 +159,51 @@
 configure:3331: result: i686-pc-linux-gnu
 configure:3339: checking host system type
 configure:3353: result: i686-pc-linux-gnu
-configure:3455: checking for initscr in -lncurses
-configure:3485: gcc -o conftest -g -O2   conftest.c -lncurses   >&5
-configure:3491: $? = 0
-configure:3494: test -z 			 || test ! -s conftest.err
-configure:3497: $? = 0
-configure:3500: test -s conftest
-configure:3503: $? = 0
-configure:3516: result: yes
-configure:3653: checking how to run the C preprocessor
-configure:3688: gcc -E  conftest.c
-configure:3694: $? = 0
-configure:3726: gcc -E  conftest.c
-conftest.c:14:28: ac_nonexistent.h: No such file or directory
-configure:3732: $? = 1
+configure:3446: checking for initscr in -lncurses
+configure:3476: gcc -o conftest -g -O2   conftest.c -lncurses   >&5
+configure:3482: $? = 0
+configure:3485: test -z 			 || test ! -s conftest.err
+configure:3488: $? = 0
+configure:3491: test -s conftest
+configure:3494: $? = 0
+configure:3507: result: yes
+configure:4618: checking for log10 in -lm
+configure:4648: gcc -o conftest -g -O2   conftest.c -lm  -lncurses   >&5
+configure:4654: $? = 0
+configure:4657: test -z 			 || test ! -s conftest.err
+configure:4660: $? = 0
+configure:4663: test -s conftest
+configure:4666: $? = 0
+configure:4679: result: yes
+configure:4691: checking for ANSI C header files
+configure:4716: gcc -c -g -O2  conftest.c >&5
+configure:4722: $? = 0
+configure:4725: test -z 			 || test ! -s conftest.err
+configure:4728: $? = 0
+configure:4731: test -s conftest.o
+configure:4734: $? = 0
+../cgdb/configure: line 1: conftest.c: command not found
+configure:4843: result: no
+configure:4853: checking for sys/wait.h that is POSIX.1 compatible
+configure:4884: gcc -c -g -O2  conftest.c >&5
+configure:4890: $? = 0
+configure:4893: test -z 			 || test ! -s conftest.err
+configure:4896: $? = 0
+configure:4899: test -s conftest.o
+configure:4902: $? = 0
+configure:4913: result: yes
+configure:4941: checking pty.h usability
+configure:4953: gcc -c -g -O2  conftest.c >&5
+configure:4959: $? = 0
+configure:4962: test -z 			 || test ! -s conftest.err
+configure:4965: $? = 0
+configure:4968: test -s conftest.o
+configure:4971: $? = 0
+configure:4981: result: yes
+configure:4985: checking pty.h presence
+configure:4995:   conftest.c
+../cgdb/configure: line 1: conftest.c: command not found
+configure:5001: $? = 127
 configure: failed program was:
 | /* confdefs.h.  */
 | 
@@ -186,14 +217,27 @@
 | #define YYTEXT_POINTER 1
 | #define HAVE_LINUX 1
 | #define HAVE_NCURSES 1
+| #define HAVE_LIBM 1
+| #define HAVE_SYS_WAIT_H 1
 | /* end confdefs.h.  */
-| #include <ac_nonexistent.h>
-configure:3771: result: gcc -E
-configure:3795: gcc -E  conftest.c
-configure:3801: $? = 0
-configure:3833: gcc -E  conftest.c
-conftest.c:14:28: ac_nonexistent.h: No such file or directory
-configure:3839: $? = 1
+| #include <pty.h>
+configure:5021: result: no
+configure:5027: WARNING: pty.h: accepted by the compiler, rejected by the preprocessor!
+configure:5029: WARNING: pty.h: proceeding with the compiler's result
+configure:5056: checking for pty.h
+configure:5063: result: yes
+configure:4941: checking sys/stropts.h usability
+configure:4953: gcc -c -g -O2  conftest.c >&5
+configure:4959: $? = 0
+configure:4962: test -z 			 || test ! -s conftest.err
+configure:4965: $? = 0
+configure:4968: test -s conftest.o
+configure:4971: $? = 0
+configure:4981: result: yes
+configure:4985: checking sys/stropts.h presence
+configure:4995:   conftest.c
+../cgdb/configure: line 1: conftest.c: command not found
+configure:5001: $? = 127
 configure: failed program was:
 | /* confdefs.h.  */
 | 
@@ -207,106 +251,28 @@
 | #define YYTEXT_POINTER 1
 | #define HAVE_LINUX 1
 | #define HAVE_NCURSES 1
+| #define HAVE_LIBM 1
+| #define HAVE_SYS_WAIT_H 1
+| #define HAVE_PTY_H 1
 | /* end confdefs.h.  */
-| #include <ac_nonexistent.h>
-configure:3883: checking for egrep
-configure:3893: result: grep -E
-configure:3898: checking for ANSI C header files
-configure:3923: gcc -c -g -O2  conftest.c >&5
-configure:3929: $? = 0
-configure:3932: test -z 			 || test ! -s conftest.err
-configure:3935: $? = 0
-configure:3938: test -s conftest.o
-configure:3941: $? = 0
-configure:4027: gcc -o conftest -g -O2   conftest.c -lncurses   >&5
-configure:4030: $? = 0
-configure:4032: ./conftest
-configure:4035: $? = 0
-configure:4050: result: yes
-configure:4074: checking for sys/types.h
-configure:4090: gcc -c -g -O2  conftest.c >&5
-configure:4096: $? = 0
-configure:4099: test -z 			 || test ! -s conftest.err
-configure:4102: $? = 0
-configure:4105: test -s conftest.o
-configure:4108: $? = 0
-configure:4119: result: yes
-configure:4074: checking for sys/stat.h
-configure:4090: gcc -c -g -O2  conftest.c >&5
-configure:4096: $? = 0
-configure:4099: test -z 			 || test ! -s conftest.err
-configure:4102: $? = 0
-configure:4105: test -s conftest.o
-configure:4108: $? = 0
-configure:4119: result: yes
-configure:4074: checking for stdlib.h
-configure:4090: gcc -c -g -O2  conftest.c >&5
-configure:4096: $? = 0
-configure:4099: test -z 			 || test ! -s conftest.err
-configure:4102: $? = 0
-configure:4105: test -s conftest.o
-configure:4108: $? = 0
-configure:4119: result: yes
-configure:4074: checking for string.h
-configure:4090: gcc -c -g -O2  conftest.c >&5
-configure:4096: $? = 0
-configure:4099: test -z 			 || test ! -s conftest.err
-configure:4102: $? = 0
-configure:4105: test -s conftest.o
-configure:4108: $? = 0
-configure:4119: result: yes
-configure:4074: checking for memory.h
-configure:4090: gcc -c -g -O2  conftest.c >&5
-configure:4096: $? = 0
-configure:4099: test -z 			 || test ! -s conftest.err
-configure:4102: $? = 0
-configure:4105: test -s conftest.o
-configure:4108: $? = 0
-configure:4119: result: yes
-configure:4074: checking for strings.h
-configure:4090: gcc -c -g -O2  conftest.c >&5
-configure:4096: $? = 0
-configure:4099: test -z 			 || test ! -s conftest.err
-configure:4102: $? = 0
-configure:4105: test -s conftest.o
-configure:4108: $? = 0
-configure:4119: result: yes
-configure:4074: checking for inttypes.h
-configure:4090: gcc -c -g -O2  conftest.c >&5
-configure:4096: $? = 0
-configure:4099: test -z 			 || test ! -s conftest.err
-configure:4102: $? = 0
-configure:4105: test -s conftest.o
-configure:4108: $? = 0
-configure:4119: result: yes
-configure:4074: checking for stdint.h
-configure:4090: gcc -c -g -O2  conftest.c >&5
-configure:4096: $? = 0
-configure:4099: test -z 			 || test ! -s conftest.err
-configure:4102: $? = 0
-configure:4105: test -s conftest.o
-configure:4108: $? = 0
-configure:4119: result: yes
-configure:4074: checking for unistd.h
-configure:4090: gcc -c -g -O2  conftest.c >&5
-configure:4096: $? = 0
-configure:4099: test -z 			 || test ! -s conftest.err
-configure:4102: $? = 0
-configure:4105: test -s conftest.o
-configure:4108: $? = 0
-configure:4119: result: yes
-configure:4132: checking for a readline compatible library
-configure:4170: gcc -o conftest -g -O2   conftest.c -lncurses   -lreadline >&5
-configure:4176: $? = 0
-configure:4179: test -z 			 || test ! -s conftest.err
-configure:4182: $? = 0
-configure:4185: test -s conftest
-configure:4188: $? = 0
-configure:4212: result: -lreadline
-configure:4238: checking readline.h usability
-configure:4250: gcc -c -g -O2  conftest.c >&5
-conftest.c:59:22: readline.h: No such file or directory
-configure:4256: $? = 1
+| #include <sys/stropts.h>
+configure:5021: result: no
+configure:5027: WARNING: sys/stropts.h: accepted by the compiler, rejected by the preprocessor!
+configure:5029: WARNING: sys/stropts.h: proceeding with the compiler's result
+configure:5056: checking for sys/stropts.h
+configure:5063: result: yes
+configure:4941: checking termios.h usability
+configure:4953: gcc -c -g -O2  conftest.c >&5
+configure:4959: $? = 0
+configure:4962: test -z 			 || test ! -s conftest.err
+configure:4965: $? = 0
+configure:4968: test -s conftest.o
+configure:4971: $? = 0
+configure:4981: result: yes
+configure:4985: checking termios.h presence
+configure:4995:   conftest.c
+../cgdb/configure: line 1: conftest.c: command not found
+configure:5001: $? = 127
 configure: failed program was:
 | /* confdefs.h.  */
 | 
@@ -320,17 +286,77 @@
 | #define YYTEXT_POINTER 1
 | #define HAVE_LINUX 1
 | #define HAVE_NCURSES 1
-| #define STDC_HEADERS 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_LIBREADLINE 1
+| #define HAVE_LIBM 1
+| #define HAVE_SYS_WAIT_H 1
+| #define HAVE_PTY_H 1
+| #define HAVE_SYS_STROPTS_H 1
+| /* end confdefs.h.  */
+| #include <termios.h>
+configure:5021: result: no
+configure:5027: WARNING: termios.h: accepted by the compiler, rejected by the preprocessor!
+configure:5029: WARNING: termios.h: proceeding with the compiler's result
+configure:5056: checking for termios.h
+configure:5063: result: yes
+configure:4941: checking sys/select.h usability
+configure:4953: gcc -c -g -O2  conftest.c >&5
+configure:4959: $? = 0
+configure:4962: test -z 			 || test ! -s conftest.err
+configure:4965: $? = 0
+configure:4968: test -s conftest.o
+configure:4971: $? = 0
+configure:4981: result: yes
+configure:4985: checking sys/select.h presence
+configure:4995:   conftest.c
+../cgdb/configure: line 1: conftest.c: command not found
+configure:5001: $? = 127
+configure: failed program was:
+| /* confdefs.h.  */
+| 
+| #define PACKAGE_NAME ""
+| #define PACKAGE_TARNAME ""
+| #define PACKAGE_VERSION ""
+| #define PACKAGE_STRING ""
+| #define PACKAGE_BUGREPORT ""
+| #define PACKAGE "cgdb"
+| #define VERSION "0.5.2-cvs"
+| #define YYTEXT_POINTER 1
+| #define HAVE_LINUX 1
+| #define HAVE_NCURSES 1
+| #define HAVE_LIBM 1
+| #define HAVE_SYS_WAIT_H 1
+| #define HAVE_PTY_H 1
+| #define HAVE_SYS_STROPTS_H 1
+| #define HAVE_TERMIOS_H 1
+| /* end confdefs.h.  */
+| #include <sys/select.h>
+configure:5021: result: no
+configure:5027: WARNING: sys/select.h: accepted by the compiler, rejected by the preprocessor!
+configure:5029: WARNING: sys/select.h: proceeding with the compiler's result
+configure:5056: checking for sys/select.h
+configure:5063: result: yes
+configure:5092: checking util.h usability
+configure:5104: gcc -c -g -O2  conftest.c >&5
+conftest.c:54:18: util.h: No such file or directory
+configure:5110: $? = 1
+configure: failed program was:
+| /* confdefs.h.  */
+| 
+| #define PACKAGE_NAME ""
+| #define PACKAGE_TARNAME ""
+| #define PACKAGE_VERSION ""
+| #define PACKAGE_STRING ""
+| #define PACKAGE_BUGREPORT ""
+| #define PACKAGE "cgdb"
+| #define VERSION "0.5.2-cvs"
+| #define YYTEXT_POINTER 1
+| #define HAVE_LINUX 1
+| #define HAVE_NCURSES 1
+| #define HAVE_LIBM 1
+| #define HAVE_SYS_WAIT_H 1
+| #define HAVE_PTY_H 1
+| #define HAVE_SYS_STROPTS_H 1
+| #define HAVE_TERMIOS_H 1
+| #define HAVE_SYS_SELECT_H 1
 | /* end confdefs.h.  */
 | #include <stdio.h>
 | #if HAVE_SYS_TYPES_H
@@ -366,12 +392,12 @@
 | #if HAVE_UNISTD_H
 | # include <unistd.h>
 | #endif
-| #include <readline.h>
-configure:4278: result: no
-configure:4282: checking readline.h presence
-configure:4292: gcc -E  conftest.c
-conftest.c:25:22: readline.h: No such file or directory
-configure:4298: $? = 1
+| #include <util.h>
+configure:5132: result: no
+configure:5136: checking util.h presence
+configure:5146:   conftest.c
+../cgdb/configure: line 1: conftest.c: command not found
+configure:5152: $? = 127
 configure: failed program was:
 | /* confdefs.h.  */
 | 
@@ -385,48 +411,21 @@
 | #define YYTEXT_POINTER 1
 | #define HAVE_LINUX 1
 | #define HAVE_NCURSES 1
-| #define STDC_HEADERS 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_LIBREADLINE 1
+| #define HAVE_LIBM 1
+| #define HAVE_SYS_WAIT_H 1
+| #define HAVE_PTY_H 1
+| #define HAVE_SYS_STROPTS_H 1
+| #define HAVE_TERMIOS_H 1
+| #define HAVE_SYS_SELECT_H 1
 | /* end confdefs.h.  */
-| #include <readline.h>
-configure:4318: result: no
-configure:4353: checking for readline.h
-configure:4360: result: no
-configure:4238: checking readline/readline.h usability
-configure:4250: gcc -c -g -O2  conftest.c >&5
-configure:4256: $? = 0
-configure:4259: test -z 			 || test ! -s conftest.err
-configure:4262: $? = 0
-configure:4265: test -s conftest.o
-configure:4268: $? = 0
-configure:4278: result: yes
-configure:4282: checking readline/readline.h presence
-configure:4292: gcc -E  conftest.c
-configure:4298: $? = 0
-configure:4318: result: yes
-configure:4353: checking for readline/readline.h
-configure:4360: result: yes
-configure:4373: checking whether readline supports history
-configure:4403: gcc -o conftest -g -O2   conftest.c -lncurses   -lreadline >&5
-configure:4409: $? = 0
-configure:4412: test -z 			 || test ! -s conftest.err
-configure:4415: $? = 0
-configure:4418: test -s conftest
-configure:4421: $? = 0
-configure:4433: result: yes
-configure:4458: checking history.h usability
-configure:4470: gcc -c -g -O2  conftest.c >&5
-conftest.c:61:21: history.h: No such file or directory
-configure:4476: $? = 1
+| #include <util.h>
+configure:5172: result: no
+configure:5207: checking for util.h
+configure:5214: result: no
+configure:5092: checking libutil.h usability
+configure:5104: gcc -c -g -O2  conftest.c >&5
+conftest.c:54:21: libutil.h: No such file or directory
+configure:5110: $? = 1
 configure: failed program was:
 | /* confdefs.h.  */
 | 
@@ -440,60 +439,817 @@
 | #define YYTEXT_POINTER 1
 | #define HAVE_LINUX 1
 | #define HAVE_NCURSES 1
-| #define STDC_HEADERS 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
+| #define HAVE_LIBM 1
+| #define HAVE_SYS_WAIT_H 1
+| #define HAVE_PTY_H 1
+| #define HAVE_SYS_STROPTS_H 1
+| #define HAVE_TERMIOS_H 1
+| #define HAVE_SYS_SELECT_H 1
+| /* end confdefs.h.  */
+| #include <stdio.h>
+| #if HAVE_SYS_TYPES_H
+| # include <sys/types.h>
+| #endif
+| #if HAVE_SYS_STAT_H
+| # include <sys/stat.h>
+| #endif
+| #if STDC_HEADERS
+| # include <stdlib.h>
+| # include <stddef.h>
+| #else
+| # if HAVE_STDLIB_H
+| #  include <stdlib.h>
+| # endif
+| #endif
+| #if HAVE_STRING_H
+| # if !STDC_HEADERS && HAVE_MEMORY_H
+| #  include <memory.h>
+| # endif
+| # include <string.h>
+| #endif
+| #if HAVE_STRINGS_H
+| # include <strings.h>
+| #endif
+| #if HAVE_INTTYPES_H
+| # include <inttypes.h>
+| #else
+| # if HAVE_STDINT_H
+| #  include <stdint.h>
+| # endif
+| #endif
+| #if HAVE_UNISTD_H
+| # include <unistd.h>
+| #endif
+| #include <libutil.h>
+configure:5132: result: no
+configure:5136: checking libutil.h presence
+configure:5146:   conftest.c
+../cgdb/configure: line 1: conftest.c: command not found
+configure:5152: $? = 127
+configure: failed program was:
+| /* confdefs.h.  */
+| 
+| #define PACKAGE_NAME ""
+| #define PACKAGE_TARNAME ""
+| #define PACKAGE_VERSION ""
+| #define PACKAGE_STRING ""
+| #define PACKAGE_BUGREPORT ""
+| #define PACKAGE "cgdb"
+| #define VERSION "0.5.2-cvs"
+| #define YYTEXT_POINTER 1
+| #define HAVE_LINUX 1
+| #define HAVE_NCURSES 1
+| #define HAVE_LIBM 1
+| #define HAVE_SYS_WAIT_H 1
+| #define HAVE_PTY_H 1
+| #define HAVE_SYS_STROPTS_H 1
+| #define HAVE_TERMIOS_H 1
+| #define HAVE_SYS_SELECT_H 1
+| /* end confdefs.h.  */
+| #include <libutil.h>
+configure:5172: result: no
+configure:5207: checking for libutil.h
+configure:5214: result: no
+configure:5257: checking errno.h usability
+configure:5269: gcc -c -g -O2  conftest.c >&5
+configure:5275: $? = 0
+configure:5278: test -z 			 || test ! -s conftest.err
+configure:5281: $? = 0
+configure:5284: test -s conftest.o
+configure:5287: $? = 0
+configure:5297: result: yes
+configure:5301: checking errno.h presence
+configure:5311:   conftest.c
+../cgdb/configure: line 1: conftest.c: command not found
+configure:5317: $? = 127
+configure: failed program was:
+| /* confdefs.h.  */
+| 
+| #define PACKAGE_NAME ""
+| #define PACKAGE_TARNAME ""
+| #define PACKAGE_VERSION ""
+| #define PACKAGE_STRING ""
+| #define PACKAGE_BUGREPORT ""
+| #define PACKAGE "cgdb"
+| #define VERSION "0.5.2-cvs"
+| #define YYTEXT_POINTER 1
+| #define HAVE_LINUX 1
+| #define HAVE_NCURSES 1
+| #define HAVE_LIBM 1
+| #define HAVE_SYS_WAIT_H 1
+| #define HAVE_PTY_H 1
+| #define HAVE_SYS_STROPTS_H 1
+| #define HAVE_TERMIOS_H 1
+| #define HAVE_SYS_SELECT_H 1
+| /* end confdefs.h.  */
+| #include <errno.h>
+configure:5337: result: no
+configure:5343: WARNING: errno.h: accepted by the compiler, rejected by the preprocessor!
+configure:5345: WARNING: errno.h: proceeding with the compiler's result
+configure:5372: checking for errno.h
+configure:5379: result: yes
+configure:5257: checking fcntl.h usability
+configure:5269: gcc -c -g -O2  conftest.c >&5
+configure:5275: $? = 0
+configure:5278: test -z 			 || test ! -s conftest.err
+configure:5281: $? = 0
+configure:5284: test -s conftest.o
+configure:5287: $? = 0
+configure:5297: result: yes
+configure:5301: checking fcntl.h presence
+configure:5311:   conftest.c
+../cgdb/configure: line 1: conftest.c: command not found
+configure:5317: $? = 127
+configure: failed program was:
+| /* confdefs.h.  */
+| 
+| #define PACKAGE_NAME ""
+| #define PACKAGE_TARNAME ""
+| #define PACKAGE_VERSION ""
+| #define PACKAGE_STRING ""
+| #define PACKAGE_BUGREPORT ""
+| #define PACKAGE "cgdb"
+| #define VERSION "0.5.2-cvs"
+| #define YYTEXT_POINTER 1
+| #define HAVE_LINUX 1
+| #define HAVE_NCURSES 1
+| #define HAVE_LIBM 1
+| #define HAVE_SYS_WAIT_H 1
+| #define HAVE_PTY_H 1
+| #define HAVE_SYS_STROPTS_H 1
+| #define HAVE_TERMIOS_H 1
+| #define HAVE_SYS_SELECT_H 1
+| #define HAVE_ERRNO_H 1
+| /* end confdefs.h.  */
+| #include <fcntl.h>
+configure:5337: result: no
+configure:5343: WARNING: fcntl.h: accepted by the compiler, rejected by the preprocessor!
+configure:5345: WARNING: fcntl.h: proceeding with the compiler's result
+configure:5372: checking for fcntl.h
+configure:5379: result: yes
+configure:5257: checking grp.h usability
+configure:5269: gcc -c -g -O2  conftest.c >&5
+configure:5275: $? = 0
+configure:5278: test -z 			 || test ! -s conftest.err
+configure:5281: $? = 0
+configure:5284: test -s conftest.o
+configure:5287: $? = 0
+configure:5297: result: yes
+configure:5301: checking grp.h presence
+configure:5311:   conftest.c
+../cgdb/configure: line 1: conftest.c: command not found
+configure:5317: $? = 127
+configure: failed program was:
+| /* confdefs.h.  */
+| 
+| #define PACKAGE_NAME ""
+| #define PACKAGE_TARNAME ""
+| #define PACKAGE_VERSION ""
+| #define PACKAGE_STRING ""
+| #define PACKAGE_BUGREPORT ""
+| #define PACKAGE "cgdb"
+| #define VERSION "0.5.2-cvs"
+| #define YYTEXT_POINTER 1
+| #define HAVE_LINUX 1
+| #define HAVE_NCURSES 1
+| #define HAVE_LIBM 1
+| #define HAVE_SYS_WAIT_H 1
+| #define HAVE_PTY_H 1
+| #define HAVE_SYS_STROPTS_H 1
+| #define HAVE_TERMIOS_H 1
+| #define HAVE_SYS_SELECT_H 1
+| #define HAVE_ERRNO_H 1
+| #define HAVE_FCNTL_H 1
+| /* end confdefs.h.  */
+| #include <grp.h>
+configure:5337: result: no
+configure:5343: WARNING: grp.h: accepted by the compiler, rejected by the preprocessor!
+configure:5345: WARNING: grp.h: proceeding with the compiler's result
+configure:5372: checking for grp.h
+configure:5379: result: yes
+configure:5257: checking pwd.h usability
+configure:5269: gcc -c -g -O2  conftest.c >&5
+configure:5275: $? = 0
+configure:5278: test -z 			 || test ! -s conftest.err
+configure:5281: $? = 0
+configure:5284: test -s conftest.o
+configure:5287: $? = 0
+configure:5297: result: yes
+configure:5301: checking pwd.h presence
+configure:5311:   conftest.c
+../cgdb/configure: line 1: conftest.c: command not found
+configure:5317: $? = 127
+configure: failed program was:
+| /* confdefs.h.  */
+| 
+| #define PACKAGE_NAME ""
+| #define PACKAGE_TARNAME ""
+| #define PACKAGE_VERSION ""
+| #define PACKAGE_STRING ""
+| #define PACKAGE_BUGREPORT ""
+| #define PACKAGE "cgdb"
+| #define VERSION "0.5.2-cvs"
+| #define YYTEXT_POINTER 1
+| #define HAVE_LINUX 1
+| #define HAVE_NCURSES 1
+| #define HAVE_LIBM 1
+| #define HAVE_SYS_WAIT_H 1
+| #define HAVE_PTY_H 1
+| #define HAVE_SYS_STROPTS_H 1
+| #define HAVE_TERMIOS_H 1
+| #define HAVE_SYS_SELECT_H 1
+| #define HAVE_ERRNO_H 1
+| #define HAVE_FCNTL_H 1
+| #define HAVE_GRP_H 1
+| /* end confdefs.h.  */
+| #include <pwd.h>
+configure:5337: result: no
+configure:5343: WARNING: pwd.h: accepted by the compiler, rejected by the preprocessor!
+configure:5345: WARNING: pwd.h: proceeding with the compiler's result
+configure:5372: checking for pwd.h
+configure:5379: result: yes
+configure:5257: checking signal.h usability
+configure:5269: gcc -c -g -O2  conftest.c >&5
+configure:5275: $? = 0
+configure:5278: test -z 			 || test ! -s conftest.err
+configure:5281: $? = 0
+configure:5284: test -s conftest.o
+configure:5287: $? = 0
+configure:5297: result: yes
+configure:5301: checking signal.h presence
+configure:5311:   conftest.c
+../cgdb/configure: line 1: conftest.c: command not found
+configure:5317: $? = 127
+configure: failed program was:
+| /* confdefs.h.  */
+| 
+| #define PACKAGE_NAME ""
+| #define PACKAGE_TARNAME ""
+| #define PACKAGE_VERSION ""
+| #define PACKAGE_STRING ""
+| #define PACKAGE_BUGREPORT ""
+| #define PACKAGE "cgdb"
+| #define VERSION "0.5.2-cvs"
+| #define YYTEXT_POINTER 1
+| #define HAVE_LINUX 1
+| #define HAVE_NCURSES 1
+| #define HAVE_LIBM 1
+| #define HAVE_SYS_WAIT_H 1
+| #define HAVE_PTY_H 1
+| #define HAVE_SYS_STROPTS_H 1
+| #define HAVE_TERMIOS_H 1
+| #define HAVE_SYS_SELECT_H 1
+| #define HAVE_ERRNO_H 1
+| #define HAVE_FCNTL_H 1
+| #define HAVE_GRP_H 1
+| #define HAVE_PWD_H 1
+| /* end confdefs.h.  */
+| #include <signal.h>
+configure:5337: result: no
+configure:5343: WARNING: signal.h: accepted by the compiler, rejected by the preprocessor!
+configure:5345: WARNING: signal.h: proceeding with the compiler's result
+configure:5372: checking for signal.h
+configure:5379: result: yes
+configure:5257: checking stdarg.h usability
+configure:5269: gcc -c -g -O2  conftest.c >&5
+configure:5275: $? = 0
+configure:5278: test -z 			 || test ! -s conftest.err
+configure:5281: $? = 0
+configure:5284: test -s conftest.o
+configure:5287: $? = 0
+configure:5297: result: yes
+configure:5301: checking stdarg.h presence
+configure:5311:   conftest.c
+../cgdb/configure: line 1: conftest.c: command not found
+configure:5317: $? = 127
+configure: failed program was:
+| /* confdefs.h.  */
+| 
+| #define PACKAGE_NAME ""
+| #define PACKAGE_TARNAME ""
+| #define PACKAGE_VERSION ""
+| #define PACKAGE_STRING ""
+| #define PACKAGE_BUGREPORT ""
+| #define PACKAGE "cgdb"
+| #define VERSION "0.5.2-cvs"
+| #define YYTEXT_POINTER 1
+| #define HAVE_LINUX 1
+| #define HAVE_NCURSES 1
+| #define HAVE_LIBM 1
+| #define HAVE_SYS_WAIT_H 1
+| #define HAVE_PTY_H 1
+| #define HAVE_SYS_STROPTS_H 1
+| #define HAVE_TERMIOS_H 1
+| #define HAVE_SYS_SELECT_H 1
+| #define HAVE_ERRNO_H 1
+| #define HAVE_FCNTL_H 1
+| #define HAVE_GRP_H 1
+| #define HAVE_PWD_H 1
+| #define HAVE_SIGNAL_H 1
+| /* end confdefs.h.  */
+| #include <stdarg.h>
+configure:5337: result: no
+configure:5343: WARNING: stdarg.h: accepted by the compiler, rejected by the preprocessor!
+configure:5345: WARNING: stdarg.h: proceeding with the compiler's result
+configure:5372: checking for stdarg.h
+configure:5379: result: yes
+configure:5257: checking stdio.h usability
+configure:5269: gcc -c -g -O2  conftest.c >&5
+configure:5275: $? = 0
+configure:5278: test -z 			 || test ! -s conftest.err
+configure:5281: $? = 0
+configure:5284: test -s conftest.o
+configure:5287: $? = 0
+configure:5297: result: yes
+configure:5301: checking stdio.h presence
+configure:5311:   conftest.c
+../cgdb/configure: line 1: conftest.c: command not found
+configure:5317: $? = 127
+configure: failed program was:
+| /* confdefs.h.  */
+| 
+| #define PACKAGE_NAME ""
+| #define PACKAGE_TARNAME ""
+| #define PACKAGE_VERSION ""
+| #define PACKAGE_STRING ""
+| #define PACKAGE_BUGREPORT ""
+| #define PACKAGE "cgdb"
+| #define VERSION "0.5.2-cvs"
+| #define YYTEXT_POINTER 1
+| #define HAVE_LINUX 1
+| #define HAVE_NCURSES 1
+| #define HAVE_LIBM 1
+| #define HAVE_SYS_WAIT_H 1
+| #define HAVE_PTY_H 1
+| #define HAVE_SYS_STROPTS_H 1
+| #define HAVE_TERMIOS_H 1
+| #define HAVE_SYS_SELECT_H 1
+| #define HAVE_ERRNO_H 1
+| #define HAVE_FCNTL_H 1
+| #define HAVE_GRP_H 1
+| #define HAVE_PWD_H 1
+| #define HAVE_SIGNAL_H 1
+| #define HAVE_STDARG_H 1
+| /* end confdefs.h.  */
+| #include <stdio.h>
+configure:5337: result: no
+configure:5343: WARNING: stdio.h: accepted by the compiler, rejected by the preprocessor!
+configure:5345: WARNING: stdio.h: proceeding with the compiler's result
+configure:5372: checking for stdio.h
+configure:5379: result: yes
+configure:5257: checking stdlib.h usability
+configure:5269: gcc -c -g -O2  conftest.c >&5
+configure:5275: $? = 0
+configure:5278: test -z 			 || test ! -s conftest.err
+configure:5281: $? = 0
+configure:5284: test -s conftest.o
+configure:5287: $? = 0
+configure:5297: result: yes
+configure:5301: checking stdlib.h presence
+configure:5311:   conftest.c
+../cgdb/configure: line 1: conftest.c: command not found
+configure:5317: $? = 127
+configure: failed program was:
+| /* confdefs.h.  */
+| 
+| #define PACKAGE_NAME ""
+| #define PACKAGE_TARNAME ""
+| #define PACKAGE_VERSION ""
+| #define PACKAGE_STRING ""
+| #define PACKAGE_BUGREPORT ""
+| #define PACKAGE "cgdb"
+| #define VERSION "0.5.2-cvs"
+| #define YYTEXT_POINTER 1
+| #define HAVE_LINUX 1
+| #define HAVE_NCURSES 1
+| #define HAVE_LIBM 1
+| #define HAVE_SYS_WAIT_H 1
+| #define HAVE_PTY_H 1
+| #define HAVE_SYS_STROPTS_H 1
+| #define HAVE_TERMIOS_H 1
+| #define HAVE_SYS_SELECT_H 1
+| #define HAVE_ERRNO_H 1
+| #define HAVE_FCNTL_H 1
+| #define HAVE_GRP_H 1
+| #define HAVE_PWD_H 1
+| #define HAVE_SIGNAL_H 1
+| #define HAVE_STDARG_H 1
+| #define HAVE_STDIO_H 1
+| /* end confdefs.h.  */
+| #include <stdlib.h>
+configure:5337: result: no
+configure:5343: WARNING: stdlib.h: accepted by the compiler, rejected by the preprocessor!
+configure:5345: WARNING: stdlib.h: proceeding with the compiler's result
+configure:5372: checking for stdlib.h
+configure:5379: result: yes
+configure:5257: checking string.h usability
+configure:5269: gcc -c -g -O2  conftest.c >&5
+configure:5275: $? = 0
+configure:5278: test -z 			 || test ! -s conftest.err
+configure:5281: $? = 0
+configure:5284: test -s conftest.o
+configure:5287: $? = 0
+configure:5297: result: yes
+configure:5301: checking string.h presence
+configure:5311:   conftest.c
+../cgdb/configure: line 1: conftest.c: command not found
+configure:5317: $? = 127
+configure: failed program was:
+| /* confdefs.h.  */
+| 
+| #define PACKAGE_NAME ""
+| #define PACKAGE_TARNAME ""
+| #define PACKAGE_VERSION ""
+| #define PACKAGE_STRING ""
+| #define PACKAGE_BUGREPORT ""
+| #define PACKAGE "cgdb"
+| #define VERSION "0.5.2-cvs"
+| #define YYTEXT_POINTER 1
+| #define HAVE_LINUX 1
+| #define HAVE_NCURSES 1
+| #define HAVE_LIBM 1
+| #define HAVE_SYS_WAIT_H 1
+| #define HAVE_PTY_H 1
+| #define HAVE_SYS_STROPTS_H 1
+| #define HAVE_TERMIOS_H 1
+| #define HAVE_SYS_SELECT_H 1
+| #define HAVE_ERRNO_H 1
+| #define HAVE_FCNTL_H 1
+| #define HAVE_GRP_H 1
+| #define HAVE_PWD_H 1
+| #define HAVE_SIGNAL_H 1
+| #define HAVE_STDARG_H 1
+| #define HAVE_STDIO_H 1
+| #define HAVE_STDLIB_H 1
+| /* end confdefs.h.  */
+| #include <string.h>
+configure:5337: result: no
+configure:5343: WARNING: string.h: accepted by the compiler, rejected by the preprocessor!
+configure:5345: WARNING: string.h: proceeding with the compiler's result
+configure:5372: checking for string.h
+configure:5379: result: yes
+configure:5257: checking sys/ioctl.h usability
+configure:5269: gcc -c -g -O2  conftest.c >&5
+configure:5275: $? = 0
+configure:5278: test -z 			 || test ! -s conftest.err
+configure:5281: $? = 0
+configure:5284: test -s conftest.o
+configure:5287: $? = 0
+configure:5297: result: yes
+configure:5301: checking sys/ioctl.h presence
+configure:5311:   conftest.c
+../cgdb/configure: line 1: conftest.c: command not found
+configure:5317: $? = 127
+configure: failed program was:
+| /* confdefs.h.  */
+| 
+| #define PACKAGE_NAME ""
+| #define PACKAGE_TARNAME ""
+| #define PACKAGE_VERSION ""
+| #define PACKAGE_STRING ""
+| #define PACKAGE_BUGREPORT ""
+| #define PACKAGE "cgdb"
+| #define VERSION "0.5.2-cvs"
+| #define YYTEXT_POINTER 1
+| #define HAVE_LINUX 1
+| #define HAVE_NCURSES 1
+| #define HAVE_LIBM 1
+| #define HAVE_SYS_WAIT_H 1
+| #define HAVE_PTY_H 1
+| #define HAVE_SYS_STROPTS_H 1
+| #define HAVE_TERMIOS_H 1
+| #define HAVE_SYS_SELECT_H 1
+| #define HAVE_ERRNO_H 1
+| #define HAVE_FCNTL_H 1
+| #define HAVE_GRP_H 1
+| #define HAVE_PWD_H 1
+| #define HAVE_SIGNAL_H 1
+| #define HAVE_STDARG_H 1
+| #define HAVE_STDIO_H 1
+| #define HAVE_STDLIB_H 1
+| #define HAVE_STRING_H 1
+| /* end confdefs.h.  */
+| #include <sys/ioctl.h>
+configure:5337: result: no
+configure:5343: WARNING: sys/ioctl.h: accepted by the compiler, rejected by the preprocessor!
+configure:5345: WARNING: sys/ioctl.h: proceeding with the compiler's result
+configure:5372: checking for sys/ioctl.h
+configure:5379: result: yes
+configure:5257: checking sys/stat.h usability
+configure:5269: gcc -c -g -O2  conftest.c >&5
+configure:5275: $? = 0
+configure:5278: test -z 			 || test ! -s conftest.err
+configure:5281: $? = 0
+configure:5284: test -s conftest.o
+configure:5287: $? = 0
+configure:5297: result: yes
+configure:5301: checking sys/stat.h presence
+configure:5311:   conftest.c
+../cgdb/configure: line 1: conftest.c: command not found
+configure:5317: $? = 127
+configure: failed program was:
+| /* confdefs.h.  */
+| 
+| #define PACKAGE_NAME ""
+| #define PACKAGE_TARNAME ""
+| #define PACKAGE_VERSION ""
+| #define PACKAGE_STRING ""
+| #define PACKAGE_BUGREPORT ""
+| #define PACKAGE "cgdb"
+| #define VERSION "0.5.2-cvs"
+| #define YYTEXT_POINTER 1
+| #define HAVE_LINUX 1
+| #define HAVE_NCURSES 1
+| #define HAVE_LIBM 1
+| #define HAVE_SYS_WAIT_H 1
+| #define HAVE_PTY_H 1
+| #define HAVE_SYS_STROPTS_H 1
+| #define HAVE_TERMIOS_H 1
+| #define HAVE_SYS_SELECT_H 1
+| #define HAVE_ERRNO_H 1
+| #define HAVE_FCNTL_H 1
+| #define HAVE_GRP_H 1
+| #define HAVE_PWD_H 1
+| #define HAVE_SIGNAL_H 1
+| #define HAVE_STDARG_H 1
+| #define HAVE_STDIO_H 1
+| #define HAVE_STDLIB_H 1
+| #define HAVE_STRING_H 1
+| #define HAVE_SYS_IOCTL_H 1
+| /* end confdefs.h.  */
+| #include <sys/stat.h>
+configure:5337: result: no
+configure:5343: WARNING: sys/stat.h: accepted by the compiler, rejected by the preprocessor!
+configure:5345: WARNING: sys/stat.h: proceeding with the compiler's result
+configure:5372: checking for sys/stat.h
+configure:5379: result: yes
+configure:5257: checking sys/time.h usability
+configure:5269: gcc -c -g -O2  conftest.c >&5
+configure:5275: $? = 0
+configure:5278: test -z 			 || test ! -s conftest.err
+configure:5281: $? = 0
+configure:5284: test -s conftest.o
+configure:5287: $? = 0
+configure:5297: result: yes
+configure:5301: checking sys/time.h presence
+configure:5311:   conftest.c
+../cgdb/configure: line 1: conftest.c: command not found
+configure:5317: $? = 127
+configure: failed program was:
+| /* confdefs.h.  */
+| 
+| #define PACKAGE_NAME ""
+| #define PACKAGE_TARNAME ""
+| #define PACKAGE_VERSION ""
+| #define PACKAGE_STRING ""
+| #define PACKAGE_BUGREPORT ""
+| #define PACKAGE "cgdb"
+| #define VERSION "0.5.2-cvs"
+| #define YYTEXT_POINTER 1
+| #define HAVE_LINUX 1
+| #define HAVE_NCURSES 1
+| #define HAVE_LIBM 1
+| #define HAVE_SYS_WAIT_H 1
+| #define HAVE_PTY_H 1
+| #define HAVE_SYS_STROPTS_H 1
+| #define HAVE_TERMIOS_H 1
+| #define HAVE_SYS_SELECT_H 1
+| #define HAVE_ERRNO_H 1
+| #define HAVE_FCNTL_H 1
+| #define HAVE_GRP_H 1
+| #define HAVE_PWD_H 1
+| #define HAVE_SIGNAL_H 1
+| #define HAVE_STDARG_H 1
+| #define HAVE_STDIO_H 1
+| #define HAVE_STDLIB_H 1
+| #define HAVE_STRING_H 1
+| #define HAVE_SYS_IOCTL_H 1
+| #define HAVE_SYS_STAT_H 1
+| /* end confdefs.h.  */
+| #include <sys/time.h>
+configure:5337: result: no
+configure:5343: WARNING: sys/time.h: accepted by the compiler, rejected by the preprocessor!
+configure:5345: WARNING: sys/time.h: proceeding with the compiler's result
+configure:5372: checking for sys/time.h
+configure:5379: result: yes
+configure:5257: checking sys/types.h usability
+configure:5269: gcc -c -g -O2  conftest.c >&5
+configure:5275: $? = 0
+configure:5278: test -z 			 || test ! -s conftest.err
+configure:5281: $? = 0
+configure:5284: test -s conftest.o
+configure:5287: $? = 0
+configure:5297: result: yes
+configure:5301: checking sys/types.h presence
+configure:5311:   conftest.c
+../cgdb/configure: line 1: conftest.c: command not found
+configure:5317: $? = 127
+configure: failed program was:
+| /* confdefs.h.  */
+| 
+| #define PACKAGE_NAME ""
+| #define PACKAGE_TARNAME ""
+| #define PACKAGE_VERSION ""
+| #define PACKAGE_STRING ""
+| #define PACKAGE_BUGREPORT ""
+| #define PACKAGE "cgdb"
+| #define VERSION "0.5.2-cvs"
+| #define YYTEXT_POINTER 1
+| #define HAVE_LINUX 1
+| #define HAVE_NCURSES 1
+| #define HAVE_LIBM 1
+| #define HAVE_SYS_WAIT_H 1
+| #define HAVE_PTY_H 1
+| #define HAVE_SYS_STROPTS_H 1
+| #define HAVE_TERMIOS_H 1
+| #define HAVE_SYS_SELECT_H 1
+| #define HAVE_ERRNO_H 1
+| #define HAVE_FCNTL_H 1
+| #define HAVE_GRP_H 1
+| #define HAVE_PWD_H 1
+| #define HAVE_SIGNAL_H 1
+| #define HAVE_STDARG_H 1
+| #define HAVE_STDIO_H 1
+| #define HAVE_STDLIB_H 1
+| #define HAVE_STRING_H 1
+| #define HAVE_SYS_IOCTL_H 1
+| #define HAVE_SYS_STAT_H 1
+| #define HAVE_SYS_TIME_H 1
+| /* end confdefs.h.  */
+| #include <sys/types.h>
+configure:5337: result: no
+configure:5343: WARNING: sys/types.h: accepted by the compiler, rejected by the preprocessor!
+configure:5345: WARNING: sys/types.h: proceeding with the compiler's result
+configure:5372: checking for sys/types.h
+configure:5379: result: yes
+configure:5257: checking unistd.h usability
+configure:5269: gcc -c -g -O2  conftest.c >&5
+configure:5275: $? = 0
+configure:5278: test -z 			 || test ! -s conftest.err
+configure:5281: $? = 0
+configure:5284: test -s conftest.o
+configure:5287: $? = 0
+configure:5297: result: yes
+configure:5301: checking unistd.h presence
+configure:5311:   conftest.c
+../cgdb/configure: line 1: conftest.c: command not found
+configure:5317: $? = 127
+configure: failed program was:
+| /* confdefs.h.  */
+| 
+| #define PACKAGE_NAME ""
+| #define PACKAGE_TARNAME ""
+| #define PACKAGE_VERSION ""
+| #define PACKAGE_STRING ""
+| #define PACKAGE_BUGREPORT ""
+| #define PACKAGE "cgdb"
+| #define VERSION "0.5.2-cvs"
+| #define YYTEXT_POINTER 1
+| #define HAVE_LINUX 1
+| #define HAVE_NCURSES 1
+| #define HAVE_LIBM 1
+| #define HAVE_SYS_WAIT_H 1
+| #define HAVE_PTY_H 1
+| #define HAVE_SYS_STROPTS_H 1
+| #define HAVE_TERMIOS_H 1
+| #define HAVE_SYS_SELECT_H 1
+| #define HAVE_ERRNO_H 1
+| #define HAVE_FCNTL_H 1
+| #define HAVE_GRP_H 1
+| #define HAVE_PWD_H 1
+| #define HAVE_SIGNAL_H 1
+| #define HAVE_STDARG_H 1
+| #define HAVE_STDIO_H 1
+| #define HAVE_STDLIB_H 1
+| #define HAVE_STRING_H 1
+| #define HAVE_SYS_IOCTL_H 1
+| #define HAVE_SYS_STAT_H 1
+| #define HAVE_SYS_TIME_H 1
+| #define HAVE_SYS_TYPES_H 1
+| /* end confdefs.h.  */
+| #include <unistd.h>
+configure:5337: result: no
+configure:5343: WARNING: unistd.h: accepted by the compiler, rejected by the preprocessor!
+configure:5345: WARNING: unistd.h: proceeding with the compiler's result
+configure:5372: checking for unistd.h
+configure:5379: result: yes
+configure:5416: checking ctype.h usability
+configure:5428: gcc -c -g -O2  conftest.c >&5
+configure:5434: $? = 0
+configure:5437: test -z 			 || test ! -s conftest.err
+configure:5440: $? = 0
+configure:5443: test -s conftest.o
+configure:5446: $? = 0
+configure:5456: result: yes
+configure:5460: checking ctype.h presence
+configure:5470:   conftest.c
+../cgdb/configure: line 1: conftest.c: command not found
+configure:5476: $? = 127
+configure: failed program was:
+| /* confdefs.h.  */
+| 
+| #define PACKAGE_NAME ""
+| #define PACKAGE_TARNAME ""
+| #define PACKAGE_VERSION ""
+| #define PACKAGE_STRING ""
+| #define PACKAGE_BUGREPORT ""
+| #define PACKAGE "cgdb"
+| #define VERSION "0.5.2-cvs"
+| #define YYTEXT_POINTER 1
+| #define HAVE_LINUX 1
+| #define HAVE_NCURSES 1
+| #define HAVE_LIBM 1
+| #define HAVE_SYS_WAIT_H 1
+| #define HAVE_PTY_H 1
+| #define HAVE_SYS_STROPTS_H 1
+| #define HAVE_TERMIOS_H 1
+| #define HAVE_SYS_SELECT_H 1
+| #define HAVE_ERRNO_H 1
+| #define HAVE_FCNTL_H 1
+| #define HAVE_GRP_H 1
+| #define HAVE_PWD_H 1
+| #define HAVE_SIGNAL_H 1
+| #define HAVE_STDARG_H 1
+| #define HAVE_STDIO_H 1
+| #define HAVE_STDLIB_H 1
+| #define HAVE_STRING_H 1
+| #define HAVE_SYS_IOCTL_H 1
+| #define HAVE_SYS_STAT_H 1
+| #define HAVE_SYS_TIME_H 1
+| #define HAVE_SYS_TYPES_H 1
+| #define HAVE_UNISTD_H 1
+| /* end confdefs.h.  */
+| #include <ctype.h>
+configure:5496: result: no
+configure:5502: WARNING: ctype.h: accepted by the compiler, rejected by the preprocessor!
+configure:5504: WARNING: ctype.h: proceeding with the compiler's result
+configure:5531: checking for ctype.h
+configure:5538: result: yes
+configure:5416: checking curses.h usability
+configure:5428: gcc -c -g -O2  conftest.c >&5
+configure:5434: $? = 0
+configure:5437: test -z 			 || test ! -s conftest.err
+configure:5440: $? = 0
+configure:5443: test -s conftest.o
+configure:5446: $? = 0
+configure:5456: result: yes
+configure:5460: checking curses.h presence
+configure:5470:   conftest.c
+../cgdb/configure: line 1: conftest.c: command not found
+configure:5476: $? = 127
+configure: failed program was:
+| /* confdefs.h.  */
+| 
+| #define PACKAGE_NAME ""
+| #define PACKAGE_TARNAME ""
+| #define PACKAGE_VERSION ""
+| #define PACKAGE_STRING ""
+| #define PACKAGE_BUGREPORT ""
+| #define PACKAGE "cgdb"
+| #define VERSION "0.5.2-cvs"
+| #define YYTEXT_POINTER 1
+| #define HAVE_LINUX 1
+| #define HAVE_NCURSES 1
+| #define HAVE_LIBM 1
+| #define HAVE_SYS_WAIT_H 1
+| #define HAVE_PTY_H 1
+| #define HAVE_SYS_STROPTS_H 1
+| #define HAVE_TERMIOS_H 1
+| #define HAVE_SYS_SELECT_H 1
+| #define HAVE_ERRNO_H 1
+| #define HAVE_FCNTL_H 1
+| #define HAVE_GRP_H 1
+| #define HAVE_PWD_H 1
+| #define HAVE_SIGNAL_H 1
+| #define HAVE_STDARG_H 1
+| #define HAVE_STDIO_H 1
 | #define HAVE_STDLIB_H 1
 | #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
+| #define HAVE_SYS_IOCTL_H 1
+| #define HAVE_SYS_STAT_H 1
+| #define HAVE_SYS_TIME_H 1
+| #define HAVE_SYS_TYPES_H 1
 | #define HAVE_UNISTD_H 1
-| #define HAVE_LIBREADLINE 1
-| #define HAVE_READLINE_READLINE_H 1
-| #define HAVE_READLINE_HISTORY 1
+| #define HAVE_CTYPE_H 1
 | /* end confdefs.h.  */
-| #include <stdio.h>
-| #if HAVE_SYS_TYPES_H
-| # include <sys/types.h>
-| #endif
-| #if HAVE_SYS_STAT_H
-| # include <sys/stat.h>
-| #endif
-| #if STDC_HEADERS
-| # include <stdlib.h>
-| # include <stddef.h>
-| #else
-| # if HAVE_STDLIB_H
-| #  include <stdlib.h>
-| # endif
-| #endif
-| #if HAVE_STRING_H
-| # if !STDC_HEADERS && HAVE_MEMORY_H
-| #  include <memory.h>
-| # endif
-| # include <string.h>
-| #endif
-| #if HAVE_STRINGS_H
-| # include <strings.h>
-| #endif
-| #if HAVE_INTTYPES_H
-| # include <inttypes.h>
-| #else
-| # if HAVE_STDINT_H
-| #  include <stdint.h>
-| # endif
-| #endif
-| #if HAVE_UNISTD_H
-| # include <unistd.h>
-| #endif
-| #include <history.h>
-configure:4498: result: no
-configure:4502: checking history.h presence
-configure:4512: gcc -E  conftest.c
-conftest.c:27:21: history.h: No such file or directory
-configure:4518: $? = 1
+| #include <curses.h>
+configure:5496: result: no
+configure:5502: WARNING: curses.h: accepted by the compiler, rejected by the preprocessor!
+configure:5504: WARNING: curses.h: proceeding with the compiler's result
+configure:5531: checking for curses.h
+configure:5538: result: yes
+configure:5416: checking limits.h usability
+configure:5428: gcc -c -g -O2  conftest.c >&5
+configure:5434: $? = 0
+configure:5437: test -z 			 || test ! -s conftest.err
+configure:5440: $? = 0
+configure:5443: test -s conftest.o
+configure:5446: $? = 0
+configure:5456: result: yes
+configure:5460: checking limits.h presence
+configure:5470:   conftest.c
+../cgdb/configure: line 1: conftest.c: command not found
+configure:5476: $? = 127
 configure: failed program was:
 | /* confdefs.h.  */
 | 
@@ -507,116 +1263,47 @@
 | #define YYTEXT_POINTER 1
 | #define HAVE_LINUX 1
 | #define HAVE_NCURSES 1
-| #define STDC_HEADERS 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
+| #define HAVE_LIBM 1
+| #define HAVE_SYS_WAIT_H 1
+| #define HAVE_PTY_H 1
+| #define HAVE_SYS_STROPTS_H 1
+| #define HAVE_TERMIOS_H 1
+| #define HAVE_SYS_SELECT_H 1
+| #define HAVE_ERRNO_H 1
+| #define HAVE_FCNTL_H 1
+| #define HAVE_GRP_H 1
+| #define HAVE_PWD_H 1
+| #define HAVE_SIGNAL_H 1
+| #define HAVE_STDARG_H 1
+| #define HAVE_STDIO_H 1
 | #define HAVE_STDLIB_H 1
 | #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
+| #define HAVE_SYS_IOCTL_H 1
+| #define HAVE_SYS_STAT_H 1
+| #define HAVE_SYS_TIME_H 1
+| #define HAVE_SYS_TYPES_H 1
 | #define HAVE_UNISTD_H 1
-| #define HAVE_LIBREADLINE 1
-| #define HAVE_READLINE_READLINE_H 1
-| #define HAVE_READLINE_HISTORY 1
-| /* end confdefs.h.  */
-| #include <history.h>
-configure:4538: result: no
-configure:4573: checking for history.h
-configure:4580: result: no
-configure:4458: checking readline/history.h usability
-configure:4470: gcc -c -g -O2  conftest.c >&5
-configure:4476: $? = 0
-configure:4479: test -z 			 || test ! -s conftest.err
-configure:4482: $? = 0
-configure:4485: test -s conftest.o
-configure:4488: $? = 0
-configure:4498: result: yes
-configure:4502: checking readline/history.h presence
-configure:4512: gcc -E  conftest.c
-configure:4518: $? = 0
-configure:4538: result: yes
-configure:4573: checking for readline/history.h
-configure:4580: result: yes
-configure:4627: checking for log10 in -lm
-configure:4657: gcc -o conftest -g -O2   conftest.c -lm  -lncurses   -lreadline >&5
-configure:4663: $? = 0
-configure:4666: test -z 			 || test ! -s conftest.err
-configure:4669: $? = 0
-configure:4672: test -s conftest
-configure:4675: $? = 0
-configure:4688: result: yes
-configure:4700: checking for ANSI C header files
-configure:4852: result: yes
-configure:4862: checking for sys/wait.h that is POSIX.1 compatible
-configure:4893: gcc -c -g -O2  conftest.c >&5
-configure:4899: $? = 0
-configure:4902: test -z 			 || test ! -s conftest.err
-configure:4905: $? = 0
-configure:4908: test -s conftest.o
-configure:4911: $? = 0
-configure:4922: result: yes
-configure:4950: checking pty.h usability
-configure:4962: gcc -c -g -O2  conftest.c >&5
-configure:4968: $? = 0
-configure:4971: test -z 			 || test ! -s conftest.err
-configure:4974: $? = 0
-configure:4977: test -s conftest.o
-configure:4980: $? = 0
-configure:4990: result: yes
-configure:4994: checking pty.h presence
-configure:5004: gcc -E  conftest.c
-configure:5010: $? = 0
-configure:5030: result: yes
-configure:5065: checking for pty.h
-configure:5072: result: yes
-configure:4950: checking sys/stropts.h usability
-configure:4962: gcc -c -g -O2  conftest.c >&5
-configure:4968: $? = 0
-configure:4971: test -z 			 || test ! -s conftest.err
-configure:4974: $? = 0
-configure:4977: test -s conftest.o
-configure:4980: $? = 0
-configure:4990: result: yes
-configure:4994: checking sys/stropts.h presence
-configure:5004: gcc -E  conftest.c
-configure:5010: $? = 0
-configure:5030: result: yes
-configure:5065: checking for sys/stropts.h
-configure:5072: result: yes
-configure:4950: checking termios.h usability
-configure:4962: gcc -c -g -O2  conftest.c >&5
-configure:4968: $? = 0
-configure:4971: test -z 			 || test ! -s conftest.err
-configure:4974: $? = 0
-configure:4977: test -s conftest.o
-configure:4980: $? = 0
-configure:4990: result: yes
-configure:4994: checking termios.h presence
-configure:5004: gcc -E  conftest.c
-configure:5010: $? = 0
-configure:5030: result: yes
-configure:5065: checking for termios.h
-configure:5072: result: yes
-configure:4950: checking sys/select.h usability
-configure:4962: gcc -c -g -O2  conftest.c >&5
-configure:4968: $? = 0
-configure:4971: test -z 			 || test ! -s conftest.err
-configure:4974: $? = 0
-configure:4977: test -s conftest.o
-configure:4980: $? = 0
-configure:4990: result: yes
-configure:4994: checking sys/select.h presence
-configure:5004: gcc -E  conftest.c
-configure:5010: $? = 0
-configure:5030: result: yes
-configure:5065: checking for sys/select.h
-configure:5072: result: yes
-configure:5101: checking util.h usability
-configure:5113: gcc -c -g -O2  conftest.c >&5
-conftest.c:69:18: util.h: No such file or directory
-configure:5119: $? = 1
+| #define HAVE_CTYPE_H 1
+| #define HAVE_CURSES_H 1
+| /* end confdefs.h.  */
+| #include <limits.h>
+configure:5496: result: no
+configure:5502: WARNING: limits.h: accepted by the compiler, rejected by the preprocessor!
+configure:5504: WARNING: limits.h: proceeding with the compiler's result
+configure:5531: checking for limits.h
+configure:5538: result: yes
+configure:5416: checking math.h usability
+configure:5428: gcc -c -g -O2  conftest.c >&5
+configure:5434: $? = 0
+configure:5437: test -z 			 || test ! -s conftest.err
+configure:5440: $? = 0
+configure:5443: test -s conftest.o
+configure:5446: $? = 0
+configure:5456: result: yes
+configure:5460: checking math.h presence
+configure:5470:   conftest.c
+../cgdb/configure: line 1: conftest.c: command not found
+configure:5476: $? = 127
 configure: failed program was:
 | /* confdefs.h.  */
 | 
@@ -630,68 +1317,48 @@
 | #define YYTEXT_POINTER 1
 | #define HAVE_LINUX 1
 | #define HAVE_NCURSES 1
-| #define STDC_HEADERS 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_LIBREADLINE 1
-| #define HAVE_READLINE_READLINE_H 1
-| #define HAVE_READLINE_HISTORY 1
-| #define HAVE_READLINE_HISTORY_H 1
 | #define HAVE_LIBM 1
-| #define STDC_HEADERS 1
 | #define HAVE_SYS_WAIT_H 1
 | #define HAVE_PTY_H 1
 | #define HAVE_SYS_STROPTS_H 1
 | #define HAVE_TERMIOS_H 1
 | #define HAVE_SYS_SELECT_H 1
+| #define HAVE_ERRNO_H 1
+| #define HAVE_FCNTL_H 1
+| #define HAVE_GRP_H 1
+| #define HAVE_PWD_H 1
+| #define HAVE_SIGNAL_H 1
+| #define HAVE_STDARG_H 1
+| #define HAVE_STDIO_H 1
+| #define HAVE_STDLIB_H 1
+| #define HAVE_STRING_H 1
+| #define HAVE_SYS_IOCTL_H 1
+| #define HAVE_SYS_STAT_H 1
+| #define HAVE_SYS_TIME_H 1
+| #define HAVE_SYS_TYPES_H 1
+| #define HAVE_UNISTD_H 1
+| #define HAVE_CTYPE_H 1
+| #define HAVE_CURSES_H 1
+| #define HAVE_LIMITS_H 1
 | /* end confdefs.h.  */
-| #include <stdio.h>
-| #if HAVE_SYS_TYPES_H
-| # include <sys/types.h>
-| #endif
-| #if HAVE_SYS_STAT_H
-| # include <sys/stat.h>
-| #endif
-| #if STDC_HEADERS
-| # include <stdlib.h>
-| # include <stddef.h>
-| #else
-| # if HAVE_STDLIB_H
-| #  include <stdlib.h>
-| # endif
-| #endif
-| #if HAVE_STRING_H
-| # if !STDC_HEADERS && HAVE_MEMORY_H
-| #  include <memory.h>
-| # endif
-| # include <string.h>
-| #endif
-| #if HAVE_STRINGS_H
-| # include <strings.h>
-| #endif
-| #if HAVE_INTTYPES_H
-| # include <inttypes.h>
-| #else
-| # if HAVE_STDINT_H
-| #  include <stdint.h>
-| # endif
-| #endif
-| #if HAVE_UNISTD_H
-| # include <unistd.h>
-| #endif
-| #include <util.h>
-configure:5141: result: no
-configure:5145: checking util.h presence
-configure:5155: gcc -E  conftest.c
-conftest.c:35:18: util.h: No such file or directory
-configure:5161: $? = 1
+| #include <math.h>
+configure:5496: result: no
+configure:5502: WARNING: math.h: accepted by the compiler, rejected by the preprocessor!
+configure:5504: WARNING: math.h: proceeding with the compiler's result
+configure:5531: checking for math.h
+configure:5538: result: yes
+configure:5416: checking regex.h usability
+configure:5428: gcc -c -g -O2  conftest.c >&5
+configure:5434: $? = 0
+configure:5437: test -z 			 || test ! -s conftest.err
+configure:5440: $? = 0
+configure:5443: test -s conftest.o
+configure:5446: $? = 0
+configure:5456: result: yes
+configure:5460: checking regex.h presence
+configure:5470:   conftest.c
+../cgdb/configure: line 1: conftest.c: command not found
+configure:5476: $? = 127
 configure: failed program was:
 | /* confdefs.h.  */
 | 
@@ -705,36 +1372,49 @@
 | #define YYTEXT_POINTER 1
 | #define HAVE_LINUX 1
 | #define HAVE_NCURSES 1
-| #define STDC_HEADERS 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_LIBREADLINE 1
-| #define HAVE_READLINE_READLINE_H 1
-| #define HAVE_READLINE_HISTORY 1
-| #define HAVE_READLINE_HISTORY_H 1
 | #define HAVE_LIBM 1
-| #define STDC_HEADERS 1
 | #define HAVE_SYS_WAIT_H 1
 | #define HAVE_PTY_H 1
 | #define HAVE_SYS_STROPTS_H 1
 | #define HAVE_TERMIOS_H 1
 | #define HAVE_SYS_SELECT_H 1
+| #define HAVE_ERRNO_H 1
+| #define HAVE_FCNTL_H 1
+| #define HAVE_GRP_H 1
+| #define HAVE_PWD_H 1
+| #define HAVE_SIGNAL_H 1
+| #define HAVE_STDARG_H 1
+| #define HAVE_STDIO_H 1
+| #define HAVE_STDLIB_H 1
+| #define HAVE_STRING_H 1
+| #define HAVE_SYS_IOCTL_H 1
+| #define HAVE_SYS_STAT_H 1
+| #define HAVE_SYS_TIME_H 1
+| #define HAVE_SYS_TYPES_H 1
+| #define HAVE_UNISTD_H 1
+| #define HAVE_CTYPE_H 1
+| #define HAVE_CURSES_H 1
+| #define HAVE_LIMITS_H 1
+| #define HAVE_MATH_H 1
 | /* end confdefs.h.  */
-| #include <util.h>
-configure:5181: result: no
-configure:5216: checking for util.h
-configure:5223: result: no
-configure:5101: checking libutil.h usability
-configure:5113: gcc -c -g -O2  conftest.c >&5
-conftest.c:69:21: libutil.h: No such file or directory
-configure:5119: $? = 1
+| #include <regex.h>
+configure:5496: result: no
+configure:5502: WARNING: regex.h: accepted by the compiler, rejected by the preprocessor!
+configure:5504: WARNING: regex.h: proceeding with the compiler's result
+configure:5531: checking for regex.h
+configure:5538: result: yes
+configure:5416: checking time.h usability
+configure:5428: gcc -c -g -O2  conftest.c >&5
+configure:5434: $? = 0
+configure:5437: test -z 			 || test ! -s conftest.err
+configure:5440: $? = 0
+configure:5443: test -s conftest.o
+configure:5446: $? = 0
+configure:5456: result: yes
+configure:5460: checking time.h presence
+configure:5470:   conftest.c
+../cgdb/configure: line 1: conftest.c: command not found
+configure:5476: $? = 127
 configure: failed program was:
 | /* confdefs.h.  */
 | 
@@ -748,68 +1428,50 @@
 | #define YYTEXT_POINTER 1
 | #define HAVE_LINUX 1
 | #define HAVE_NCURSES 1
-| #define STDC_HEADERS 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_LIBREADLINE 1
-| #define HAVE_READLINE_READLINE_H 1
-| #define HAVE_READLINE_HISTORY 1
-| #define HAVE_READLINE_HISTORY_H 1
 | #define HAVE_LIBM 1
-| #define STDC_HEADERS 1
 | #define HAVE_SYS_WAIT_H 1
 | #define HAVE_PTY_H 1
 | #define HAVE_SYS_STROPTS_H 1
 | #define HAVE_TERMIOS_H 1
 | #define HAVE_SYS_SELECT_H 1
+| #define HAVE_ERRNO_H 1
+| #define HAVE_FCNTL_H 1
+| #define HAVE_GRP_H 1
+| #define HAVE_PWD_H 1
+| #define HAVE_SIGNAL_H 1
+| #define HAVE_STDARG_H 1
+| #define HAVE_STDIO_H 1
+| #define HAVE_STDLIB_H 1
+| #define HAVE_STRING_H 1
+| #define HAVE_SYS_IOCTL_H 1
+| #define HAVE_SYS_STAT_H 1
+| #define HAVE_SYS_TIME_H 1
+| #define HAVE_SYS_TYPES_H 1
+| #define HAVE_UNISTD_H 1
+| #define HAVE_CTYPE_H 1
+| #define HAVE_CURSES_H 1
+| #define HAVE_LIMITS_H 1
+| #define HAVE_MATH_H 1
+| #define HAVE_REGEX_H 1
 | /* end confdefs.h.  */
-| #include <stdio.h>
-| #if HAVE_SYS_TYPES_H
-| # include <sys/types.h>
-| #endif
-| #if HAVE_SYS_STAT_H
-| # include <sys/stat.h>
-| #endif
-| #if STDC_HEADERS
-| # include <stdlib.h>
-| # include <stddef.h>
-| #else
-| # if HAVE_STDLIB_H
-| #  include <stdlib.h>
-| # endif
-| #endif
-| #if HAVE_STRING_H
-| # if !STDC_HEADERS && HAVE_MEMORY_H
-| #  include <memory.h>
-| # endif
-| # include <string.h>
-| #endif
-| #if HAVE_STRINGS_H
-| # include <strings.h>
-| #endif
-| #if HAVE_INTTYPES_H
-| # include <inttypes.h>
-| #else
-| # if HAVE_STDINT_H
-| #  include <stdint.h>
-| # endif
-| #endif
-| #if HAVE_UNISTD_H
-| # include <unistd.h>
-| #endif
-| #include <libutil.h>
-configure:5141: result: no
-configure:5145: checking libutil.h presence
-configure:5155: gcc -E  conftest.c
-conftest.c:35:21: libutil.h: No such file or directory
-configure:5161: $? = 1
+| #include <time.h>
+configure:5496: result: no
+configure:5502: WARNING: time.h: accepted by the compiler, rejected by the preprocessor!
+configure:5504: WARNING: time.h: proceeding with the compiler's result
+configure:5531: checking for time.h
+configure:5538: result: yes
+configure:5562: checking getopt.h usability
+configure:5574: gcc -c -g -O2  conftest.c >&5
+configure:5580: $? = 0
+configure:5583: test -z 			 || test ! -s conftest.err
+configure:5586: $? = 0
+configure:5589: test -s conftest.o
+configure:5592: $? = 0
+configure:5602: result: yes
+configure:5606: checking getopt.h presence
+configure:5616:   conftest.c
+../cgdb/configure: line 1: conftest.c: command not found
+configure:5622: $? = 127
 configure: failed program was:
 | /* confdefs.h.  */
 | 
@@ -823,309 +1485,85 @@
 | #define YYTEXT_POINTER 1
 | #define HAVE_LINUX 1
 | #define HAVE_NCURSES 1
-| #define STDC_HEADERS 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_LIBREADLINE 1
-| #define HAVE_READLINE_READLINE_H 1
-| #define HAVE_READLINE_HISTORY 1
-| #define HAVE_READLINE_HISTORY_H 1
 | #define HAVE_LIBM 1
-| #define STDC_HEADERS 1
 | #define HAVE_SYS_WAIT_H 1
 | #define HAVE_PTY_H 1
 | #define HAVE_SYS_STROPTS_H 1
 | #define HAVE_TERMIOS_H 1
 | #define HAVE_SYS_SELECT_H 1
+| #define HAVE_ERRNO_H 1
+| #define HAVE_FCNTL_H 1
+| #define HAVE_GRP_H 1
+| #define HAVE_PWD_H 1
+| #define HAVE_SIGNAL_H 1
+| #define HAVE_STDARG_H 1
+| #define HAVE_STDIO_H 1
+| #define HAVE_STDLIB_H 1
+| #define HAVE_STRING_H 1
+| #define HAVE_SYS_IOCTL_H 1
+| #define HAVE_SYS_STAT_H 1
+| #define HAVE_SYS_TIME_H 1
+| #define HAVE_SYS_TYPES_H 1
+| #define HAVE_UNISTD_H 1
+| #define HAVE_CTYPE_H 1
+| #define HAVE_CURSES_H 1
+| #define HAVE_LIMITS_H 1
+| #define HAVE_MATH_H 1
+| #define HAVE_REGEX_H 1
+| #define HAVE_TIME_H 1
 | /* end confdefs.h.  */
-| #include <libutil.h>
-configure:5181: result: no
-configure:5216: checking for libutil.h
-configure:5223: result: no
-configure:5266: checking errno.h usability
-configure:5278: gcc -c -g -O2  conftest.c >&5
-configure:5284: $? = 0
-configure:5287: test -z 			 || test ! -s conftest.err
-configure:5290: $? = 0
-configure:5293: test -s conftest.o
-configure:5296: $? = 0
-configure:5306: result: yes
-configure:5310: checking errno.h presence
-configure:5320: gcc -E  conftest.c
-configure:5326: $? = 0
-configure:5346: result: yes
-configure:5381: checking for errno.h
-configure:5388: result: yes
-configure:5266: checking fcntl.h usability
-configure:5278: gcc -c -g -O2  conftest.c >&5
-configure:5284: $? = 0
-configure:5287: test -z 			 || test ! -s conftest.err
-configure:5290: $? = 0
-configure:5293: test -s conftest.o
-configure:5296: $? = 0
-configure:5306: result: yes
-configure:5310: checking fcntl.h presence
-configure:5320: gcc -E  conftest.c
-configure:5326: $? = 0
-configure:5346: result: yes
-configure:5381: checking for fcntl.h
-configure:5388: result: yes
-configure:5266: checking grp.h usability
-configure:5278: gcc -c -g -O2  conftest.c >&5
-configure:5284: $? = 0
-configure:5287: test -z 			 || test ! -s conftest.err
-configure:5290: $? = 0
-configure:5293: test -s conftest.o
-configure:5296: $? = 0
-configure:5306: result: yes
-configure:5310: checking grp.h presence
-configure:5320: gcc -E  conftest.c
-configure:5326: $? = 0
-configure:5346: result: yes
-configure:5381: checking for grp.h
-configure:5388: result: yes
-configure:5266: checking pwd.h usability
-configure:5278: gcc -c -g -O2  conftest.c >&5
-configure:5284: $? = 0
-configure:5287: test -z 			 || test ! -s conftest.err
-configure:5290: $? = 0
-configure:5293: test -s conftest.o
-configure:5296: $? = 0
-configure:5306: result: yes
-configure:5310: checking pwd.h presence
-configure:5320: gcc -E  conftest.c
-configure:5326: $? = 0
-configure:5346: result: yes
-configure:5381: checking for pwd.h
-configure:5388: result: yes
-configure:5266: checking signal.h usability
-configure:5278: gcc -c -g -O2  conftest.c >&5
-configure:5284: $? = 0
-configure:5287: test -z 			 || test ! -s conftest.err
-configure:5290: $? = 0
-configure:5293: test -s conftest.o
-configure:5296: $? = 0
-configure:5306: result: yes
-configure:5310: checking signal.h presence
-configure:5320: gcc -E  conftest.c
-configure:5326: $? = 0
-configure:5346: result: yes
-configure:5381: checking for signal.h
-configure:5388: result: yes
-configure:5266: checking stdarg.h usability
-configure:5278: gcc -c -g -O2  conftest.c >&5
-configure:5284: $? = 0
-configure:5287: test -z 			 || test ! -s conftest.err
-configure:5290: $? = 0
-configure:5293: test -s conftest.o
-configure:5296: $? = 0
-configure:5306: result: yes
-configure:5310: checking stdarg.h presence
-configure:5320: gcc -E  conftest.c
-configure:5326: $? = 0
-configure:5346: result: yes
-configure:5381: checking for stdarg.h
-configure:5388: result: yes
-configure:5266: checking stdio.h usability
-configure:5278: gcc -c -g -O2  conftest.c >&5
-configure:5284: $? = 0
-configure:5287: test -z 			 || test ! -s conftest.err
-configure:5290: $? = 0
-configure:5293: test -s conftest.o
-configure:5296: $? = 0
-configure:5306: result: yes
-configure:5310: checking stdio.h presence
-configure:5320: gcc -E  conftest.c
-configure:5326: $? = 0
-configure:5346: result: yes
-configure:5381: checking for stdio.h
-configure:5388: result: yes
-configure:5257: checking for stdlib.h
-configure:5262: result: yes
-configure:5257: checking for string.h
-configure:5262: result: yes
-configure:5266: checking sys/ioctl.h usability
-configure:5278: gcc -c -g -O2  conftest.c >&5
-configure:5284: $? = 0
-configure:5287: test -z 			 || test ! -s conftest.err
-configure:5290: $? = 0
-configure:5293: test -s conftest.o
-configure:5296: $? = 0
-configure:5306: result: yes
-configure:5310: checking sys/ioctl.h presence
-configure:5320: gcc -E  conftest.c
-configure:5326: $? = 0
-configure:5346: result: yes
-configure:5381: checking for sys/ioctl.h
-configure:5388: result: yes
-configure:5257: checking for sys/stat.h
-configure:5262: result: yes
-configure:5266: checking sys/time.h usability
-configure:5278: gcc -c -g -O2  conftest.c >&5
-configure:5284: $? = 0
-configure:5287: test -z 			 || test ! -s conftest.err
-configure:5290: $? = 0
-configure:5293: test -s conftest.o
-configure:5296: $? = 0
-configure:5306: result: yes
-configure:5310: checking sys/time.h presence
-configure:5320: gcc -E  conftest.c
-configure:5326: $? = 0
-configure:5346: result: yes
-configure:5381: checking for sys/time.h
-configure:5388: result: yes
-configure:5257: checking for sys/types.h
-configure:5262: result: yes
-configure:5257: checking for unistd.h
-configure:5262: result: yes
-configure:5425: checking ctype.h usability
-configure:5437: gcc -c -g -O2  conftest.c >&5
-configure:5443: $? = 0
-configure:5446: test -z 			 || test ! -s conftest.err
-configure:5449: $? = 0
-configure:5452: test -s conftest.o
-configure:5455: $? = 0
-configure:5465: result: yes
-configure:5469: checking ctype.h presence
-configure:5479: gcc -E  conftest.c
-configure:5485: $? = 0
-configure:5505: result: yes
-configure:5540: checking for ctype.h
-configure:5547: result: yes
-configure:5425: checking curses.h usability
-configure:5437: gcc -c -g -O2  conftest.c >&5
-configure:5443: $? = 0
-configure:5446: test -z 			 || test ! -s conftest.err
-configure:5449: $? = 0
-configure:5452: test -s conftest.o
-configure:5455: $? = 0
-configure:5465: result: yes
-configure:5469: checking curses.h presence
-configure:5479: gcc -E  conftest.c
-configure:5485: $? = 0
-configure:5505: result: yes
-configure:5540: checking for curses.h
-configure:5547: result: yes
-configure:5425: checking limits.h usability
-configure:5437: gcc -c -g -O2  conftest.c >&5
-configure:5443: $? = 0
-configure:5446: test -z 			 || test ! -s conftest.err
-configure:5449: $? = 0
-configure:5452: test -s conftest.o
-configure:5455: $? = 0
-configure:5465: result: yes
-configure:5469: checking limits.h presence
-configure:5479: gcc -E  conftest.c
-configure:5485: $? = 0
-configure:5505: result: yes
-configure:5540: checking for limits.h
-configure:5547: result: yes
-configure:5425: checking math.h usability
-configure:5437: gcc -c -g -O2  conftest.c >&5
-configure:5443: $? = 0
-configure:5446: test -z 			 || test ! -s conftest.err
-configure:5449: $? = 0
-configure:5452: test -s conftest.o
-configure:5455: $? = 0
-configure:5465: result: yes
-configure:5469: checking math.h presence
-configure:5479: gcc -E  conftest.c
-configure:5485: $? = 0
-configure:5505: result: yes
-configure:5540: checking for math.h
-configure:5547: result: yes
-configure:5425: checking regex.h usability
-configure:5437: gcc -c -g -O2  conftest.c >&5
-configure:5443: $? = 0
-configure:5446: test -z 			 || test ! -s conftest.err
-configure:5449: $? = 0
-configure:5452: test -s conftest.o
-configure:5455: $? = 0
-configure:5465: result: yes
-configure:5469: checking regex.h presence
-configure:5479: gcc -E  conftest.c
-configure:5485: $? = 0
-configure:5505: result: yes
-configure:5540: checking for regex.h
-configure:5547: result: yes
-configure:5425: checking time.h usability
-configure:5437: gcc -c -g -O2  conftest.c >&5
-configure:5443: $? = 0
-configure:5446: test -z 			 || test ! -s conftest.err
-configure:5449: $? = 0
-configure:5452: test -s conftest.o
-configure:5455: $? = 0
-configure:5465: result: yes
-configure:5469: checking time.h presence
-configure:5479: gcc -E  conftest.c
-configure:5485: $? = 0
-configure:5505: result: yes
-configure:5540: checking for time.h
-configure:5547: result: yes
-configure:5571: checking getopt.h usability
-configure:5583: gcc -c -g -O2  conftest.c >&5
-configure:5589: $? = 0
-configure:5592: test -z 			 || test ! -s conftest.err
-configure:5595: $? = 0
-configure:5598: test -s conftest.o
-configure:5601: $? = 0
-configure:5611: result: yes
-configure:5615: checking getopt.h presence
-configure:5625: gcc -E  conftest.c
-configure:5631: $? = 0
-configure:5651: result: yes
-configure:5686: checking for getopt.h
-configure:5693: result: yes
-configure:5707: checking for /dev/ptmx
-configure:5722: result: yes
-configure:5733: checking for an ANSI C-conforming const
-configure:5800: gcc -c -g -O2  conftest.c >&5
-configure:5806: $? = 0
-configure:5809: test -z 			 || test ! -s conftest.err
-configure:5812: $? = 0
-configure:5815: test -s conftest.o
-configure:5818: $? = 0
-configure:5829: result: yes
-configure:5839: checking for uid_t in sys/types.h
-configure:5862: result: yes
-configure:5877: checking for mode_t
-configure:5901: gcc -c -g -O2  conftest.c >&5
-configure:5907: $? = 0
-configure:5910: test -z 			 || test ! -s conftest.err
-configure:5913: $? = 0
-configure:5916: test -s conftest.o
-configure:5919: $? = 0
-configure:5930: result: yes
-configure:5942: checking for pid_t
-configure:5966: gcc -c -g -O2  conftest.c >&5
-configure:5972: $? = 0
-configure:5975: test -z 			 || test ! -s conftest.err
-configure:5978: $? = 0
-configure:5981: test -s conftest.o
-configure:5984: $? = 0
-configure:5995: result: yes
-configure:6007: checking for size_t
-configure:6031: gcc -c -g -O2  conftest.c >&5
-configure:6037: $? = 0
-configure:6040: test -z 			 || test ! -s conftest.err
-configure:6043: $? = 0
-configure:6046: test -s conftest.o
-configure:6049: $? = 0
-configure:6060: result: yes
-configure:6074: checking whether gcc needs -traditional
-configure:6116: result: no
-configure:6123: checking whether setpgrp takes no argument
-configure:6155: gcc -o conftest -g -O2   conftest.c -lm -lncurses   -lreadline >&5
+| #include <getopt.h>
+configure:5642: result: no
+configure:5648: WARNING: getopt.h: accepted by the compiler, rejected by the preprocessor!
+configure:5650: WARNING: getopt.h: proceeding with the compiler's result
+configure:5677: checking for getopt.h
+configure:5684: result: yes
+configure:5698: checking for /dev/ptmx
+configure:5713: result: yes
+configure:5724: checking for an ANSI C-conforming const
+configure:5791: gcc -c -g -O2  conftest.c >&5
+configure:5797: $? = 0
+configure:5800: test -z 			 || test ! -s conftest.err
+configure:5803: $? = 0
+configure:5806: test -s conftest.o
+configure:5809: $? = 0
+configure:5820: result: yes
+configure:5830: checking for uid_t in sys/types.h
+../cgdb/configure: line 1: conftest.c: command not found
+configure:5853: result: no
+configure:5868: checking for mode_t
+configure:5892: gcc -c -g -O2  conftest.c >&5
+configure:5898: $? = 0
+configure:5901: test -z 			 || test ! -s conftest.err
+configure:5904: $? = 0
+configure:5907: test -s conftest.o
+configure:5910: $? = 0
+configure:5921: result: yes
+configure:5933: checking for pid_t
+configure:5957: gcc -c -g -O2  conftest.c >&5
+configure:5963: $? = 0
+configure:5966: test -z 			 || test ! -s conftest.err
+configure:5969: $? = 0
+configure:5972: test -s conftest.o
+configure:5975: $? = 0
+configure:5986: result: yes
+configure:5998: checking for size_t
+configure:6022: gcc -c -g -O2  conftest.c >&5
+configure:6028: $? = 0
+configure:6031: test -z 			 || test ! -s conftest.err
+configure:6034: $? = 0
+configure:6037: test -s conftest.o
+configure:6040: $? = 0
+configure:6051: result: yes
+configure:6065: checking whether gcc needs -traditional
+../cgdb/configure: line 1: conftest.c: command not found
+../cgdb/configure: line 1: conftest.c: command not found
+configure:6107: result: no
+configure:6114: checking whether setpgrp takes no argument
+configure:6146: gcc -o conftest -g -O2   conftest.c -lm -lncurses   >&5
 conftest.c: In function `main':
-conftest.c:67: error: too many arguments to function `setpgrp'
-configure:6158: $? = 1
+conftest.c:54: error: too many arguments to function `setpgrp'
+configure:6149: $? = 1
 configure: program exited with status 1
 configure: failed program was:
 | /* confdefs.h.  */
@@ -1140,22 +1578,7 @@
 | #define YYTEXT_POINTER 1
 | #define HAVE_LINUX 1
 | #define HAVE_NCURSES 1
-| #define STDC_HEADERS 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_LIBREADLINE 1
-| #define HAVE_READLINE_READLINE_H 1
-| #define HAVE_READLINE_HISTORY 1
-| #define HAVE_READLINE_HISTORY_H 1
 | #define HAVE_LIBM 1
-| #define STDC_HEADERS 1
 | #define HAVE_SYS_WAIT_H 1
 | #define HAVE_PTY_H 1
 | #define HAVE_SYS_STROPTS_H 1
@@ -1183,6 +1606,8 @@
 | #define HAVE_TIME_H 1
 | #define HAVE_GETOPT_H 1
 | #define HAVE_DEV_PTMX 1
+| #define uid_t int
+| #define gid_t int
 | /* end confdefs.h.  */
 | #if HAVE_UNISTD_H
 | # include <unistd.h>
@@ -1198,31 +1623,31 @@
 |   ;
 |   return 0;
 | }
-configure:6177: result: yes
-configure:6187: checking return type of signal handlers
-configure:6218: gcc -c -g -O2  conftest.c >&5
-configure:6224: $? = 0
-configure:6227: test -z 			 || test ! -s conftest.err
-configure:6230: $? = 0
-configure:6233: test -s conftest.o
-configure:6236: $? = 0
-configure:6247: result: void
-configure:6259: checking for vprintf
-configure:6316: gcc -o conftest -g -O2   conftest.c -lm -lncurses   -lreadline >&5
-conftest.c:83: warning: conflicting types for built-in function `vprintf'
-configure:6322: $? = 0
-configure:6325: test -z 			 || test ! -s conftest.err
-configure:6328: $? = 0
-configure:6331: test -s conftest
-configure:6334: $? = 0
-configure:6346: result: yes
-configure:6353: checking for _doprnt
-configure:6410: gcc -o conftest -g -O2   conftest.c -lm -lncurses   -lreadline >&5
-/tmp/cc8esopS.o(.text+0x11): In function `main':
-/home/bob/cvs/cgdb/cgdb.pack_rl/objdir/conftest.c:100: undefined reference to `_doprnt'
-/tmp/cc8esopS.o(.data+0x0):/home/bob/cvs/cgdb/cgdb.pack_rl/objdir/conftest.c:99: undefined reference to `_doprnt'
+configure:6168: result: yes
+configure:6178: checking return type of signal handlers
+configure:6209: gcc -c -g -O2  conftest.c >&5
+configure:6215: $? = 0
+configure:6218: test -z 			 || test ! -s conftest.err
+configure:6221: $? = 0
+configure:6224: test -s conftest.o
+configure:6227: $? = 0
+configure:6238: result: void
+configure:6250: checking for vprintf
+configure:6307: gcc -o conftest -g -O2   conftest.c -lm -lncurses   >&5
+conftest.c:70: warning: conflicting types for built-in function `vprintf'
+configure:6313: $? = 0
+configure:6316: test -z 			 || test ! -s conftest.err
+configure:6319: $? = 0
+configure:6322: test -s conftest
+configure:6325: $? = 0
+configure:6337: result: yes
+configure:6344: checking for _doprnt
+configure:6401: gcc -o conftest -g -O2   conftest.c -lm -lncurses   >&5
+/tmp/cccANAcC.o(.text+0x11): In function `main':
+/home/bob/cvs/cgdb/cgdb.pack_rl/objdir/conftest.c:87: undefined reference to `_doprnt'
+/tmp/cccANAcC.o(.data+0x0):/home/bob/cvs/cgdb/cgdb.pack_rl/objdir/conftest.c:86: undefined reference to `_doprnt'
 collect2: ld returned 1 exit status
-configure:6416: $? = 1
+configure:6407: $? = 1
 configure: failed program was:
 | /* confdefs.h.  */
 | 
@@ -1236,22 +1661,7 @@
 | #define YYTEXT_POINTER 1
 | #define HAVE_LINUX 1
 | #define HAVE_NCURSES 1
-| #define STDC_HEADERS 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_LIBREADLINE 1
-| #define HAVE_READLINE_READLINE_H 1
-| #define HAVE_READLINE_HISTORY 1
-| #define HAVE_READLINE_HISTORY_H 1
 | #define HAVE_LIBM 1
-| #define STDC_HEADERS 1
 | #define HAVE_SYS_WAIT_H 1
 | #define HAVE_PTY_H 1
 | #define HAVE_SYS_STROPTS_H 1
@@ -1279,6 +1689,8 @@
 | #define HAVE_TIME_H 1
 | #define HAVE_GETOPT_H 1
 | #define HAVE_DEV_PTMX 1
+| #define uid_t int
+| #define gid_t int
 | #define SETPGRP_VOID 1
 | #define RETSIGTYPE void
 | #define HAVE_VPRINTF 1
@@ -1327,48 +1739,48 @@
 |   ;
 |   return 0;
 | }
-configure:6440: result: no
-configure:6462: checking for mkdir
-configure:6519: gcc -o conftest -g -O2   conftest.c -lm -lncurses   -lreadline >&5
-configure:6525: $? = 0
-configure:6528: test -z 			 || test ! -s conftest.err
-configure:6531: $? = 0
-configure:6534: test -s conftest
-configure:6537: $? = 0
-configure:6549: result: yes
-configure:6462: checking for putenv
-configure:6519: gcc -o conftest -g -O2   conftest.c -lm -lncurses   -lreadline >&5
-configure:6525: $? = 0
-configure:6528: test -z 			 || test ! -s conftest.err
-configure:6531: $? = 0
-configure:6534: test -s conftest
-configure:6537: $? = 0
-configure:6549: result: yes
-configure:6462: checking for select
-configure:6519: gcc -o conftest -g -O2   conftest.c -lm -lncurses   -lreadline >&5
-configure:6525: $? = 0
-configure:6528: test -z 			 || test ! -s conftest.err
-configure:6531: $? = 0
-configure:6534: test -s conftest
-configure:6537: $? = 0
-configure:6549: result: yes
-configure:6462: checking for strdup
-configure:6519: gcc -o conftest -g -O2   conftest.c -lm -lncurses   -lreadline >&5
-configure:6525: $? = 0
-configure:6528: test -z 			 || test ! -s conftest.err
-configure:6531: $? = 0
-configure:6534: test -s conftest
-configure:6537: $? = 0
-configure:6549: result: yes
-configure:6462: checking for strerror
-configure:6519: gcc -o conftest -g -O2   conftest.c -lm -lncurses   -lreadline >&5
-configure:6525: $? = 0
-configure:6528: test -z 			 || test ! -s conftest.err
-configure:6531: $? = 0
-configure:6534: test -s conftest
-configure:6537: $? = 0
-configure:6549: result: yes
-configure:6677: creating ./config.status
+configure:6431: result: no
+configure:6453: checking for mkdir
+configure:6510: gcc -o conftest -g -O2   conftest.c -lm -lncurses   >&5
+configure:6516: $? = 0
+configure:6519: test -z 			 || test ! -s conftest.err
+configure:6522: $? = 0
+configure:6525: test -s conftest
+configure:6528: $? = 0
+configure:6540: result: yes
+configure:6453: checking for putenv
+configure:6510: gcc -o conftest -g -O2   conftest.c -lm -lncurses   >&5
+configure:6516: $? = 0
+configure:6519: test -z 			 || test ! -s conftest.err
+configure:6522: $? = 0
+configure:6525: test -s conftest
+configure:6528: $? = 0
+configure:6540: result: yes
+configure:6453: checking for select
+configure:6510: gcc -o conftest -g -O2   conftest.c -lm -lncurses   >&5
+configure:6516: $? = 0
+configure:6519: test -z 			 || test ! -s conftest.err
+configure:6522: $? = 0
+configure:6525: test -s conftest
+configure:6528: $? = 0
+configure:6540: result: yes
+configure:6453: checking for strdup
+configure:6510: gcc -o conftest -g -O2   conftest.c -lm -lncurses   >&5
+configure:6516: $? = 0
+configure:6519: test -z 			 || test ! -s conftest.err
+configure:6522: $? = 0
+configure:6525: test -s conftest
+configure:6528: $? = 0
+configure:6540: result: yes
+configure:6453: checking for strerror
+configure:6510: gcc -o conftest -g -O2   conftest.c -lm -lncurses   >&5
+configure:6516: $? = 0
+configure:6519: test -z 			 || test ! -s conftest.err
+configure:6522: $? = 0
+configure:6525: test -s conftest
+configure:6528: $? = 0
+configure:6540: result: yes
+configure:6668: creating ./config.status
 
 ## ---------------------- ##
 ## Running config.status. ##
@@ -1410,7 +1822,7 @@
 config.status:765: creating cgdb/tokenizer/Makefile
 config.status:765: creating cgdb/tokenizer/src/Makefile
 config.status:824: creating config.h
-config.status:1216: executing depfiles commands
+config.status:1190: executing depfiles commands
 
 ## ---------------- ##
 ## Cache variables. ##
@@ -1452,26 +1864,18 @@
 ac_cv_header_fcntl_h=yes
 ac_cv_header_getopt_h=yes
 ac_cv_header_grp_h=yes
-ac_cv_header_history_h=no
-ac_cv_header_inttypes_h=yes
 ac_cv_header_libutil_h=no
 ac_cv_header_limits_h=yes
 ac_cv_header_math_h=yes
-ac_cv_header_memory_h=yes
 ac_cv_header_pty_h=yes
 ac_cv_header_pwd_h=yes
-ac_cv_header_readline_h=no
-ac_cv_header_readline_history_h=yes
-ac_cv_header_readline_readline_h=yes
 ac_cv_header_regex_h=yes
 ac_cv_header_signal_h=yes
 ac_cv_header_stdarg_h=yes
-ac_cv_header_stdc=yes
-ac_cv_header_stdint_h=yes
+ac_cv_header_stdc=no
 ac_cv_header_stdio_h=yes
 ac_cv_header_stdlib_h=yes
 ac_cv_header_string_h=yes
-ac_cv_header_strings_h=yes
 ac_cv_header_sys_ioctl_h=yes
 ac_cv_header_sys_select_h=yes
 ac_cv_header_sys_stat_h=yes
@@ -1491,14 +1895,12 @@
 ac_cv_objext=o
 ac_cv_path_install='/usr/bin/install -c'
 ac_cv_prog_AWK=mawk
-ac_cv_prog_CPP='gcc -E'
 ac_cv_prog_LEX=flex
 ac_cv_prog_YACC='bison -y'
 ac_cv_prog_ac_ct_CC=gcc
 ac_cv_prog_ac_ct_RANLIB=ranlib
 ac_cv_prog_cc_g=yes
 ac_cv_prog_cc_stdc=
-ac_cv_prog_egrep='grep -E'
 ac_cv_prog_gcc_traditional=no
 ac_cv_prog_lex_root=lex.yy
 ac_cv_prog_lex_yytext_pointer=yes
@@ -1507,10 +1909,8 @@
 ac_cv_type_pid_t=yes
 ac_cv_type_signal=void
 ac_cv_type_size_t=yes
-ac_cv_type_uid_t=yes
+ac_cv_type_uid_t=no
 am_cv_CC_dependencies_compiler_type=gcc3
-vl_cv_lib_readline=-lreadline
-vl_cv_lib_readline_history=yes
 
 ## ----------------- ##
 ## Output variables. ##
@@ -1528,7 +1928,7 @@
 CC='gcc'
 CCDEPMODE='depmode=gcc3'
 CFLAGS='-g -O2'
-CPP='gcc -E'
+CPP=''
 CPPFLAGS=''
 CYGPATH_W='echo'
 DEFS='-DHAVE_CONFIG_H'
@@ -1536,7 +1936,7 @@
 ECHO_C=''
 ECHO_N='-n'
 ECHO_T=''
-EGREP='grep -E'
+EGREP=''
 EXEEXT=''
 INSTALL_DATA='${INSTALL} -m 644'
 INSTALL_PROGRAM='${INSTALL}'
@@ -1547,7 +1947,7 @@
 LEXLIB='-lfl'
 LEX_OUTPUT_ROOT='lex.yy'
 LIBOBJS=''
-LIBS='-lm -lncurses   -lreadline'
+LIBS='-lm -lncurses  '
 LTLIBOBJS=''
 MAINT='#'
 MAINTAINER_MODE_FALSE=''
@@ -1614,47 +2014,34 @@
 #define HAVE_FCNTL_H 1
 #define HAVE_GETOPT_H 1
 #define HAVE_GRP_H 1
-#define HAVE_INTTYPES_H 1
 #define HAVE_LIBM 1
-#define HAVE_LIBREADLINE 1
 #define HAVE_LIMITS_H 1
 #define HAVE_LINUX 1
 #define HAVE_MATH_H 1
-#define HAVE_MEMORY_H 1
 #define HAVE_MKDIR 1
 #define HAVE_NCURSES 1
 #define HAVE_PTY_H 1
 #define HAVE_PUTENV 1
 #define HAVE_PWD_H 1
-#define HAVE_READLINE_HISTORY 1
-#define HAVE_READLINE_HISTORY_H 1
-#define HAVE_READLINE_READLINE_H 1
 #define HAVE_REGEX_H 1
 #define HAVE_SELECT 1
 #define HAVE_SIGNAL_H 1
 #define HAVE_STDARG_H 1
-#define HAVE_STDINT_H 1
 #define HAVE_STDIO_H 1
 #define HAVE_STDLIB_H 1
-#define HAVE_STDLIB_H 1
 #define HAVE_STRDUP 1
 #define HAVE_STRERROR 1
-#define HAVE_STRINGS_H 1
-#define HAVE_STRING_H 1
 #define HAVE_STRING_H 1
 #define HAVE_SYS_IOCTL_H 1
 #define HAVE_SYS_SELECT_H 1
 #define HAVE_SYS_STAT_H 1
-#define HAVE_SYS_STAT_H 1
 #define HAVE_SYS_STROPTS_H 1
 #define HAVE_SYS_TIME_H 1
 #define HAVE_SYS_TYPES_H 1
-#define HAVE_SYS_TYPES_H 1
 #define HAVE_SYS_WAIT_H 1
 #define HAVE_TERMIOS_H 1
 #define HAVE_TIME_H 1
 #define HAVE_UNISTD_H 1
-#define HAVE_UNISTD_H 1
 #define HAVE_VPRINTF 1
 #define PACKAGE "cgdb"
 #define PACKAGE_BUGREPORT ""
@@ -1664,9 +2051,9 @@
 #define PACKAGE_VERSION ""
 #define RETSIGTYPE void
 #define SETPGRP_VOID 1
-#define STDC_HEADERS 1
-#define STDC_HEADERS 1
 #define VERSION "0.5.2-cvs"
 #define YYTEXT_POINTER 1
+#define gid_t int
+#define uid_t int
 
 configure: exit 0
_______________________________________________
Autoconf mailing list
Autoconf@xxxxxxx
http://lists.gnu.org/mailman/listinfo/autoconf

[Index of Archives]     [GCC Help]     [Kernel Discussion]     [RPM Discussion]     [Red Hat Development]     [Yosemite News]     [Linux USB]     [Samba]

  Powered by Linux