diff options
author | Mark Kettenis <kettenis@gnu.org> | 2002-12-31 13:05:02 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@gnu.org> | 2002-12-31 13:05:02 +0000 |
commit | 3250596b895f997bac04d2688cdde62b02609146 (patch) | |
tree | 7bed8c102cf9ad4c904c3b9d00f2d1bd9d98fb4f | |
parent | 9608ab8b2af94439e3dfe07774857cd74a190a08 (diff) | |
download | gdb-3250596b895f997bac04d2688cdde62b02609146.zip gdb-3250596b895f997bac04d2688cdde62b02609146.tar.gz gdb-3250596b895f997bac04d2688cdde62b02609146.tar.bz2 |
* configure.in: Remove bzero and bcopy from call to AC_CHECK_FUNCS.
* config.in, configure: Regenerated.
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/config.in | 6 | ||||
-rwxr-xr-x | gdb/configure | 2 | ||||
-rw-r--r-- | gdb/configure.in | 2 |
4 files changed, 7 insertions, 8 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index ad2cfda..9f077ac 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,10 @@ 2002-12-31 Mark Kettenis <kettenis@gnu.org> + * configure.in: Remove bzero and bcopy from call to AC_CHECK_FUNCS. + * config.in, configure: Regenerated. + +2002-12-31 Mark Kettenis <kettenis@gnu.org> + * gdb_dirent.h: Cleanup and update code to match the example in the Autoconf manual. * configure.in: Call AC_HEADER_DIRENT. Remove dirent.h, diff --git a/gdb/config.in b/gdb/config.in index 921b168..dbc4a5f 100644 --- a/gdb/config.in +++ b/gdb/config.in @@ -202,15 +202,9 @@ /* Define if you have the __argz_stringify function. */ #undef HAVE___ARGZ_STRINGIFY -/* Define if you have the bcopy function. */ -#undef HAVE_BCOPY - /* Define if you have the btowc function. */ #undef HAVE_BTOWC -/* Define if you have the bzero function. */ -#undef HAVE_BZERO - /* Define if you have the canonicalize_file_name function. */ #undef HAVE_CANONICALIZE_FILE_NAME diff --git a/gdb/configure b/gdb/configure index a6381f9..b9267e3 100755 --- a/gdb/configure +++ b/gdb/configure @@ -3732,7 +3732,7 @@ EOF esac -for ac_func in bcopy btowc bzero canonicalize_file_name isascii poll \ +for ac_func in btowc canonicalize_file_name isascii poll \ realpath sbrk setpgid setpgrp sigaction sigprocmask sigsetmask do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 diff --git a/gdb/configure.in b/gdb/configure.in index 4c549cc..42e1177 100644 --- a/gdb/configure.in +++ b/gdb/configure.in @@ -135,7 +135,7 @@ AC_HEADER_STAT AC_C_CONST AC_C_INLINE -AC_CHECK_FUNCS(bcopy btowc bzero canonicalize_file_name isascii poll \ +AC_CHECK_FUNCS(btowc canonicalize_file_name isascii poll \ realpath sbrk setpgid setpgrp sigaction sigprocmask sigsetmask ) AC_FUNC_ALLOCA AC_FUNC_VFORK |