* configure.in: Reorganize "Checks for library functions section"
a bit. Remove check for `btowc' and `isascii' functions. * configure: Regenerated.
This commit is contained in:
parent
4852a44ef5
commit
97bf5e38c3
3 changed files with 2392 additions and 2170 deletions
|
@ -1,5 +1,9 @@
|
|||
2003-01-02 Mark Kettenis <kettenis@gnu.org>
|
||||
|
||||
* configure.in: Reorganize "Checks for library functions section"
|
||||
a bit. Remove check for `btowc' and `isascii' functions.
|
||||
* configure: Regenerated.
|
||||
|
||||
* acconfig.h (_MSE_INT_H): Remove.
|
||||
* configure.in: Create "Checks for header files" section, and move
|
||||
appropriate tests there. Don't check for objlist.h, wchar.h,
|
||||
|
|
4543
gdb/configure
vendored
4543
gdb/configure
vendored
File diff suppressed because it is too large
Load diff
|
@ -204,10 +204,16 @@ AC_C_INLINE
|
|||
# Checks for library functions. #
|
||||
# ------------------------------ #
|
||||
|
||||
AC_CHECK_FUNCS(btowc canonicalize_file_name isascii poll \
|
||||
realpath sbrk setpgid setpgrp sigaction sigprocmask sigsetmask )
|
||||
AC_FUNC_ALLOCA
|
||||
AC_FUNC_MMAP
|
||||
AC_FUNC_VFORK
|
||||
AC_CHECK_FUNCS(canonicalize_file_name realpath)
|
||||
AC_CHECK_FUNCS(poll)
|
||||
AC_CHECK_FUNCS(sbrk)
|
||||
AC_CHECK_FUNCS(setpgid setpgrp)
|
||||
AC_CHECK_FUNCS(sigaction sigprocmask, sigsetmask)
|
||||
AC_CHECK_FUNCS(socketpair)
|
||||
|
||||
dnl AC_FUNC_SETPGRP does not work when cross compiling
|
||||
dnl Instead, assume we will have a prototype for setpgrp if cross compiling.
|
||||
if test "$cross_compiling" = no; then
|
||||
|
@ -304,9 +310,6 @@ if test $gdb_cv_have_pt_getxmmregs = yes; then
|
|||
fi
|
||||
|
||||
|
||||
AC_CHECK_FUNCS(socketpair)
|
||||
|
||||
|
||||
BFD_NEED_DECLARATION(malloc)
|
||||
BFD_NEED_DECLARATION(realloc)
|
||||
BFD_NEED_DECLARATION(free)
|
||||
|
@ -572,8 +575,6 @@ if test $gdb_cv_scanf_has_long_double = yes; then
|
|||
fi
|
||||
AC_MSG_RESULT($gdb_cv_scanf_has_long_double)
|
||||
|
||||
AC_FUNC_MMAP
|
||||
|
||||
case ${host_os} in
|
||||
aix*)
|
||||
AC_CACHE_CHECK([for -bbigtoc option], [gdb_cv_bigtoc], [
|
||||
|
|
Loading…
Add table
Reference in a new issue