1998-10-12 Jason Molenda (jsm@bugshack.cygnus.com)
* Makefile.in (AWK): Unused; remove. * configure.in: Remove unused autoconf checks for MINIX, memcpy, poll, select, strings.h. * config.in: Regenerated. * configure: Regenerated.
This commit is contained in:
parent
bbee94c77c
commit
b0f33a0337
3 changed files with 238 additions and 348 deletions
|
@ -44,16 +44,9 @@
|
||||||
/* Define as __inline if that's what the C compiler calls it. */
|
/* Define as __inline if that's what the C compiler calls it. */
|
||||||
#undef inline
|
#undef inline
|
||||||
|
|
||||||
/* Define if on MINIX. */
|
|
||||||
#undef _MINIX
|
|
||||||
|
|
||||||
/* Define to `long' if <sys/types.h> doesn't define. */
|
/* Define to `long' if <sys/types.h> doesn't define. */
|
||||||
#undef off_t
|
#undef off_t
|
||||||
|
|
||||||
/* Define if the system does not provide POSIX.1 features except
|
|
||||||
with this defined. */
|
|
||||||
#undef _POSIX_1_SOURCE
|
|
||||||
|
|
||||||
/* Define if you need to in order for stat and other things to work. */
|
/* Define if you need to in order for stat and other things to work. */
|
||||||
#undef _POSIX_SOURCE
|
#undef _POSIX_SOURCE
|
||||||
|
|
||||||
|
@ -157,24 +150,15 @@
|
||||||
/* Define if you have the isascii function. */
|
/* Define if you have the isascii function. */
|
||||||
#undef HAVE_ISASCII
|
#undef HAVE_ISASCII
|
||||||
|
|
||||||
/* Define if you have the memcpy function. */
|
|
||||||
#undef HAVE_MEMCPY
|
|
||||||
|
|
||||||
/* Define if you have the munmap function. */
|
/* Define if you have the munmap function. */
|
||||||
#undef HAVE_MUNMAP
|
#undef HAVE_MUNMAP
|
||||||
|
|
||||||
/* Define if you have the poll function. */
|
|
||||||
#undef HAVE_POLL
|
|
||||||
|
|
||||||
/* Define if you have the putenv function. */
|
/* Define if you have the putenv function. */
|
||||||
#undef HAVE_PUTENV
|
#undef HAVE_PUTENV
|
||||||
|
|
||||||
/* Define if you have the sbrk function. */
|
/* Define if you have the sbrk function. */
|
||||||
#undef HAVE_SBRK
|
#undef HAVE_SBRK
|
||||||
|
|
||||||
/* Define if you have the select function. */
|
|
||||||
#undef HAVE_SELECT
|
|
||||||
|
|
||||||
/* Define if you have the setenv function. */
|
/* Define if you have the setenv function. */
|
||||||
#undef HAVE_SETENV
|
#undef HAVE_SETENV
|
||||||
|
|
||||||
|
@ -250,9 +234,6 @@
|
||||||
/* Define if you have the <string.h> header file. */
|
/* Define if you have the <string.h> header file. */
|
||||||
#undef HAVE_STRING_H
|
#undef HAVE_STRING_H
|
||||||
|
|
||||||
/* Define if you have the <strings.h> header file. */
|
|
||||||
#undef HAVE_STRINGS_H
|
|
||||||
|
|
||||||
/* Define if you have the <sys/param.h> header file. */
|
/* Define if you have the <sys/param.h> header file. */
|
||||||
#undef HAVE_SYS_PARAM_H
|
#undef HAVE_SYS_PARAM_H
|
||||||
|
|
||||||
|
|
538
gdb/configure
vendored
538
gdb/configure
vendored
File diff suppressed because it is too large
Load diff
|
@ -25,12 +25,8 @@ AC_CONFIG_HEADER(config.h:config.in)
|
||||||
|
|
||||||
AC_PROG_CC
|
AC_PROG_CC
|
||||||
AC_AIX
|
AC_AIX
|
||||||
AC_MINIX
|
|
||||||
AC_ISC_POSIX
|
AC_ISC_POSIX
|
||||||
|
|
||||||
DLLTOOL=${DLLTOOL-dlltool}
|
|
||||||
AC_SUBST(DLLTOOL)
|
|
||||||
|
|
||||||
AC_CONFIG_AUX_DIR(`cd $srcdir;pwd`/..)
|
AC_CONFIG_AUX_DIR(`cd $srcdir;pwd`/..)
|
||||||
AC_CANONICAL_SYSTEM
|
AC_CANONICAL_SYSTEM
|
||||||
|
|
||||||
|
@ -61,16 +57,15 @@ AC_PROG_INSTALL
|
||||||
AC_CHECK_TOOL(AR, ar)
|
AC_CHECK_TOOL(AR, ar)
|
||||||
AC_CHECK_TOOL(RANLIB, ranlib, :)
|
AC_CHECK_TOOL(RANLIB, ranlib, :)
|
||||||
AC_PROG_YACC
|
AC_PROG_YACC
|
||||||
AC_PROG_AWK
|
|
||||||
|
|
||||||
AC_ARG_PROGRAM
|
AC_ARG_PROGRAM
|
||||||
|
|
||||||
AC_TYPE_SIGNAL
|
AC_TYPE_SIGNAL
|
||||||
|
|
||||||
AC_HEADER_STDC
|
AC_HEADER_STDC
|
||||||
AC_CHECK_HEADERS(ctype.h curses.h endian.h libintl.h limits.h link.h \
|
AC_CHECK_HEADERS(ctype.h curses.h endian.h libintl.h link.h \
|
||||||
memory.h objlist.h ptrace.h sgtty.h stddef.h stdlib.h \
|
memory.h objlist.h ptrace.h sgtty.h stddef.h stdlib.h \
|
||||||
string.h strings.h sys/procfs.h sys/ptrace.h sys/reg.h \
|
string.h sys/procfs.h sys/ptrace.h sys/reg.h \
|
||||||
term.h termio.h termios.h unistd.h wait.h sys/wait.h \
|
term.h termio.h termios.h unistd.h wait.h sys/wait.h \
|
||||||
wchar.h wctype.h asm/debugreg.h)
|
wchar.h wctype.h asm/debugreg.h)
|
||||||
|
|
||||||
|
@ -78,8 +73,7 @@ AC_HEADER_STAT
|
||||||
|
|
||||||
AC_C_CONST
|
AC_C_CONST
|
||||||
|
|
||||||
AC_CHECK_FUNCS(setpgid sbrk select poll sigaction isascii bzero bcopy \
|
AC_CHECK_FUNCS(setpgid sbrk sigaction isascii bzero bcopy btowc)
|
||||||
memcpy btowc)
|
|
||||||
AC_FUNC_ALLOCA
|
AC_FUNC_ALLOCA
|
||||||
|
|
||||||
BFD_NEED_DECLARATION(malloc)
|
BFD_NEED_DECLARATION(malloc)
|
||||||
|
@ -360,9 +354,9 @@ do
|
||||||
if test "x$targ" = "xall" ; then
|
if test "x$targ" = "xall" ; then
|
||||||
all_targets=true
|
all_targets=true
|
||||||
else
|
else
|
||||||
t_cpu=`echo $targ | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
|
t_cpu=`echo $targ | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
|
||||||
t_vendor=`echo $targ | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`
|
t_vendor=`echo $targ | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`
|
||||||
t_os=`echo $targ | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
|
t_os=`echo $targ | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
|
||||||
mt=`
|
mt=`
|
||||||
target=$targ
|
target=$targ
|
||||||
target_cpu=$t_cpu
|
target_cpu=$t_cpu
|
||||||
|
@ -394,7 +388,7 @@ if test x${all_targets} = xfalse ; then
|
||||||
ta="$ta ${arch}-tdep.o"
|
ta="$ta ${arch}-tdep.o"
|
||||||
# Special cases
|
# Special cases
|
||||||
case "$arch" in
|
case "$arch" in
|
||||||
dvp) ta="$ta mips-tdep.o dvp-tdep.o" ;;
|
dvp) ta="$ta mips-tdep.o dvp-tdep.o" ;;
|
||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
|
|
||||||
|
@ -402,8 +396,8 @@ if test x${all_targets} = xfalse ; then
|
||||||
f=""
|
f=""
|
||||||
for i in $ta ; do
|
for i in $ta ; do
|
||||||
case " $f " in
|
case " $f " in
|
||||||
*" $i "*) ;;
|
*" $i "*) ;;
|
||||||
*) f="$f $i" ;;
|
*) f="$f $i" ;;
|
||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
ta="$f"
|
ta="$f"
|
||||||
|
@ -412,8 +406,8 @@ if test x${all_targets} = xfalse ; then
|
||||||
f=""
|
f=""
|
||||||
for i in $archdefs ; do
|
for i in $archdefs ; do
|
||||||
case " $f " in
|
case " $f " in
|
||||||
*" $i "*) ;;
|
*" $i "*) ;;
|
||||||
*) f="$f $i" ;;
|
*) f="$f $i" ;;
|
||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
archdefs="$f"
|
archdefs="$f"
|
||||||
|
@ -537,7 +531,9 @@ WIN32LDAPP=
|
||||||
AC_SUBST(WIN32LIBS)
|
AC_SUBST(WIN32LIBS)
|
||||||
AC_SUBST(WIN32LDAPP)
|
AC_SUBST(WIN32LDAPP)
|
||||||
|
|
||||||
|
DLLTOOL=${DLLTOOL-dlltool}
|
||||||
WINDRES=${WINDRES-windres}
|
WINDRES=${WINDRES-windres}
|
||||||
|
AC_SUBST(DLLTOOL)
|
||||||
AC_SUBST(WINDRES)
|
AC_SUBST(WINDRES)
|
||||||
|
|
||||||
if test x$gdb_cv_os_cygwin32 = xyes; then
|
if test x$gdb_cv_os_cygwin32 = xyes; then
|
||||||
|
@ -859,4 +855,3 @@ nativefile=$nativefile
|
||||||
])
|
])
|
||||||
|
|
||||||
exit 0
|
exit 0
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue