From 2e09e75ade29bde9224eea1629ed0091f74e7a08 Mon Sep 17 00:00:00 2001 From: Joseph Myers Date: Thu, 9 Nov 2000 07:45:15 +0000 Subject: [PATCH] calls.c (expand_call, [...]): Use memcpy () instead of bcopy (). * calls.c (expand_call, emit_library_call_value_1), collect2.c (scan_prog_file), config/a29k/a29k.c (print_operand), config/sparc/sparc.c (order_regs_for_local_alloc): Use memcpy () instead of bcopy (). * real.h: Use memcmp () instead of bcmp (). * config/m88k/m88k.c (m88k_layout_frame), config/sh/sh.c (split_branches), config/sparc/sparc.c (ultra_flush_pipeline, ultrasparc_sched_init, ultrasparc_sched_reorder), config/sparc/sparc.h (CONDITIONAL_REGISTER_USAGE): Use memset () instead of bzero (). * config/vax/xm-xms.h (FILE_NAME_NONDIRECTORY): Use strrchr () instead of rindex (). * configure.in: Don't check for bzero, bcmp, index or rindex. * configure, config.in: Regenerate. * system.h: Don't include declarations for bzero, bcmp, index or rindex. * config/i386/xm-beos.h, config/rs6000/xm-beos.h: Don't define bzero, bcmp, index or rindex. java: * parse.y (create_new_parser_context): Use memset () instead of bzero (). From-SVN: r37334 --- gcc/ChangeLog | 21 ++++ gcc/calls.c | 8 +- gcc/collect2.c | 2 +- gcc/config.in | 24 ---- gcc/config/a29k/a29k.c | 8 +- gcc/config/i386/xm-beos.h | 8 -- gcc/config/m88k/m88k.c | 2 +- gcc/config/rs6000/xm-beos.h | 8 -- gcc/config/sh/sh.c | 2 +- gcc/config/sparc/sparc.c | 11 +- gcc/config/sparc/sparc.h | 2 +- gcc/config/vax/xm-vms.h | 6 +- gcc/configure | 216 +++++++++++++++++------------------- gcc/configure.in | 8 +- gcc/java/ChangeLog | 5 + gcc/java/parse.y | 2 +- gcc/real.h | 2 +- gcc/system.h | 40 ------- 18 files changed, 155 insertions(+), 220 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index a117c684ed4..de889297349 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,24 @@ +2000-11-09 Joseph S. Myers + + * calls.c (expand_call, emit_library_call_value_1), collect2.c + (scan_prog_file), config/a29k/a29k.c (print_operand), + config/sparc/sparc.c (order_regs_for_local_alloc): Use memcpy () + instead of bcopy (). + * real.h: Use memcmp () instead of bcmp (). + * config/m88k/m88k.c (m88k_layout_frame), config/sh/sh.c + (split_branches), config/sparc/sparc.c (ultra_flush_pipeline, + ultrasparc_sched_init, ultrasparc_sched_reorder), + config/sparc/sparc.h (CONDITIONAL_REGISTER_USAGE): Use memset () + instead of bzero (). + * config/vax/xm-xms.h (FILE_NAME_NONDIRECTORY): Use strrchr () + instead of rindex (). + * configure.in: Don't check for bzero, bcmp, index or rindex. + * configure, config.in: Regenerate. + * system.h: Don't include declarations for bzero, bcmp, index or + rindex. + * config/i386/xm-beos.h, config/rs6000/xm-beos.h: Don't define + bzero, bcmp, index or rindex. + Wed Nov 8 21:58:20 2000 Christopher Faylor * config/i386/cygwin.h: Add -no-win32 switch. Separate -mno-cygwin diff --git a/gcc/calls.c b/gcc/calls.c index ec0ad09666b..14c10b0d421 100644 --- a/gcc/calls.c +++ b/gcc/calls.c @@ -2782,8 +2782,8 @@ expand_call (exp, target, ignore) = (char *) alloca (highest_outgoing_arg_in_use); if (initial_highest_arg_in_use) - bcopy (initial_stack_usage_map, stack_usage_map, - initial_highest_arg_in_use); + memcpy (stack_usage_map, initial_stack_usage_map, + initial_highest_arg_in_use); if (initial_highest_arg_in_use != highest_outgoing_arg_in_use) memset (&stack_usage_map[initial_highest_arg_in_use], 0, @@ -3766,8 +3766,8 @@ emit_library_call_value_1 (retval, orgfun, value, fn_type, outmode, nargs, p) stack_usage_map = (char *) alloca (highest_outgoing_arg_in_use); if (initial_highest_arg_in_use) - bcopy (initial_stack_usage_map, stack_usage_map, - initial_highest_arg_in_use); + memcpy (stack_usage_map, initial_stack_usage_map, + initial_highest_arg_in_use); if (initial_highest_arg_in_use != highest_outgoing_arg_in_use) memset (&stack_usage_map[initial_highest_arg_in_use], 0, diff --git a/gcc/collect2.c b/gcc/collect2.c index 139e6e83198..827772392a7 100644 --- a/gcc/collect2.c +++ b/gcc/collect2.c @@ -3057,7 +3057,7 @@ scan_prog_file (prog_name, which_pass) if (rw) { load_union_t *ptr = (load_union_t *) xmalloc (load_hdr->hdr.ldci_cmd_size); - bcopy ((char *)load_hdr, (char *)ptr, load_hdr->hdr.ldci_cmd_size); + memcpy ((char *)ptr, (char *)load_hdr, load_hdr->hdr.ldci_cmd_size); load_hdr = ptr; /* null out old command map, because we will rewrite at the end. */ diff --git a/gcc/config.in b/gcc/config.in index b2a09f6014b..4ad8f149010 100644 --- a/gcc/config.in +++ b/gcc/config.in @@ -120,18 +120,12 @@ /* Define if you have the atoq function. */ #undef HAVE_ATOQ -/* Define if you have the bcmp function. */ -#undef HAVE_BCMP - /* Define if you have the bcopy function. */ #undef HAVE_BCOPY /* Define if you have the bsearch function. */ #undef HAVE_BSEARCH -/* Define if you have the bzero function. */ -#undef HAVE_BZERO - /* Define if you have the dcgettext function. */ #undef HAVE_DCGETTEXT @@ -159,9 +153,6 @@ /* Define if you have the iconv function. */ #undef HAVE_ICONV -/* Define if you have the index function. */ -#undef HAVE_INDEX - /* Define if you have the isascii function. */ #undef HAVE_ISASCII @@ -183,9 +174,6 @@ /* Define if you have the putenv function. */ #undef HAVE_PUTENV -/* Define if you have the rindex function. */ -#undef HAVE_RINDEX - /* Define if you have the setenv function. */ #undef HAVE_SETENV @@ -354,18 +342,6 @@ /* Define to 1 if we found this declaration otherwise define to 0. */ #undef HAVE_DECL_BCOPY -/* Define to 1 if we found this declaration otherwise define to 0. */ -#undef HAVE_DECL_BZERO - -/* Define to 1 if we found this declaration otherwise define to 0. */ -#undef HAVE_DECL_BCMP - -/* Define to 1 if we found this declaration otherwise define to 0. */ -#undef HAVE_DECL_INDEX - -/* Define to 1 if we found this declaration otherwise define to 0. */ -#undef HAVE_DECL_RINDEX - /* Define to 1 if we found this declaration otherwise define to 0. */ #undef HAVE_DECL_GETENV diff --git a/gcc/config/a29k/a29k.c b/gcc/config/a29k/a29k.c index 88285584d8c..5a87e940e06 100644 --- a/gcc/config/a29k/a29k.c +++ b/gcc/config/a29k/a29k.c @@ -1122,7 +1122,7 @@ print_operand (file, x, code) { union real_extract u; - bcopy ((char *) &CONST_DOUBLE_LOW (x), (char *) &u, sizeof u); + memcpy ((char *) &u, (char *) &CONST_DOUBLE_LOW (x), sizeof u); fprintf (file, "$double1(%.20e)", u.d); } else if (GET_CODE (x) == REG) @@ -1186,8 +1186,8 @@ print_operand (file, x, code) fprintf (file, "$float"); else fprintf (file, "$double%d", SUBREG_WORD (XEXP (x, 0))); - bcopy ((char *) &CONST_DOUBLE_LOW (SUBREG_REG (XEXP (x, 0))), - (char *) &u, sizeof u); + memcpy ((char *) &u, + (char *) &CONST_DOUBLE_LOW (SUBREG_REG (XEXP (x, 0))), sizeof u); fprintf (file, "(%.20e)", u.d); } @@ -1196,7 +1196,7 @@ print_operand (file, x, code) { union real_extract u; - bcopy ((char *) &CONST_DOUBLE_LOW (x), (char *) &u, sizeof u); + memcpy ((char *) &u, (char *) &CONST_DOUBLE_LOW (x), sizeof u); fprintf (file, "$%s(%.20e)", GET_MODE (x) == SFmode ? "float" : "double0", u.d); } diff --git a/gcc/config/i386/xm-beos.h b/gcc/config/i386/xm-beos.h index a2be905da3b..e9aaf45bde0 100644 --- a/gcc/config/i386/xm-beos.h +++ b/gcc/config/i386/xm-beos.h @@ -38,14 +38,6 @@ Boston, MA 02111-1307, USA. */ #undef bcopy #define bcopy(s,d,n) memmove((d),(s),(n)) -#undef bzero -#define bzero(d,n) memset((d),0,(n)) -#undef bcmp -#define bcmp(l,r,n) memcmp((l),(r),(n)) -#undef index -#define index strchr -#undef rindex -#define rindex strrchr /* BeOS is closer to USG than BSD */ diff --git a/gcc/config/m88k/m88k.c b/gcc/config/m88k/m88k.c index a30b350c454..c4d2ab0885d 100644 --- a/gcc/config/m88k/m88k.c +++ b/gcc/config/m88k/m88k.c @@ -1786,7 +1786,7 @@ m88k_layout_frame () frame_laid_out++; - bzero ((char *) &save_regs[0], sizeof (save_regs)); + memset ((char *) &save_regs[0], 0, sizeof (save_regs)); sp_size = nregs = nxregs = 0; frame_size = get_frame_size (); diff --git a/gcc/config/rs6000/xm-beos.h b/gcc/config/rs6000/xm-beos.h index 25c50182bcf..3660a696ed1 100644 --- a/gcc/config/rs6000/xm-beos.h +++ b/gcc/config/rs6000/xm-beos.h @@ -57,14 +57,6 @@ extern void *alloca (); #undef bcopy #define bcopy(s,d,n) memmove((d),(s),(n)) -#undef bzero -#define bzero(d,n) memset((d),0,(n)) -#undef bcmp -#define bcmp(l,r,n) memcmp((l),(r),(n)) -#undef index -#define index strchr -#undef rindex -#define rindex strrchr /* BeOS is closer to USG than BSD */ diff --git a/gcc/config/sh/sh.c b/gcc/config/sh/sh.c index 74d365bf708..4a03dd84235 100644 --- a/gcc/config/sh/sh.c +++ b/gcc/config/sh/sh.c @@ -3381,7 +3381,7 @@ split_branches (first) shorten_branches (first); uid_branch = (struct far_branch **) alloca (max_uid * sizeof *uid_branch); - bzero ((char *) uid_branch, max_uid * sizeof *uid_branch); + memset ((char *) uid_branch, 0, max_uid * sizeof *uid_branch); for (insn = first; insn; insn = NEXT_INSN (insn)) if (! INSN_P (insn)) diff --git a/gcc/config/sparc/sparc.c b/gcc/config/sparc/sparc.c index d99e7034464..8c96a8ace7c 100644 --- a/gcc/config/sparc/sparc.c +++ b/gcc/config/sparc/sparc.c @@ -5440,8 +5440,9 @@ order_regs_for_local_alloc () if (regs_ever_live[15] != last_order_nonleaf) { last_order_nonleaf = !last_order_nonleaf; - bcopy ((char *) reg_alloc_orders[last_order_nonleaf], - (char *) reg_alloc_order, FIRST_PSEUDO_REGISTER * sizeof (int)); + memcpy ((char *) reg_alloc_order, + (char *) reg_alloc_orders[last_order_nonleaf], + FIRST_PSEUDO_REGISTER * sizeof (int)); } } @@ -7553,7 +7554,7 @@ ultra_flush_pipeline () { ultra_cur_hist = (ultra_cur_hist + 1) & (ULTRA_NUM_HIST - 1); ultra_cycles_elapsed += 1; - bzero ((char *) &ultra_pipe, sizeof ultra_pipe); + memset ((char *) &ultra_pipe, 0, sizeof ultra_pipe); ultra_pipe.free_slot_mask = 0xf; } @@ -7563,7 +7564,7 @@ ultrasparc_sched_init (dump, sched_verbose) FILE *dump ATTRIBUTE_UNUSED; int sched_verbose ATTRIBUTE_UNUSED; { - bzero ((char *) ultra_pipe_hist, sizeof ultra_pipe_hist); + memset ((char *) ultra_pipe_hist, 0, sizeof ultra_pipe_hist); ultra_cur_hist = 0; ultra_cycles_elapsed = 0; ultra_pipe.free_slot_mask = 0xf; @@ -7899,7 +7900,7 @@ ultrasparc_sched_reorder (dump, sched_verbose, ready, n_ready) } else { - bzero ((char *) &ultra_pipe, sizeof ultra_pipe); + memset ((char *) &ultra_pipe, 0, sizeof ultra_pipe); ultra_pipe.free_slot_mask = 0xf; } } diff --git a/gcc/config/sparc/sparc.h b/gcc/config/sparc/sparc.h index e2a4371e077..78a870ecbeb 100644 --- a/gcc/config/sparc/sparc.h +++ b/gcc/config/sparc/sparc.h @@ -1118,7 +1118,7 @@ do \ fixed_regs[31] = 1; \ reg_names[FRAME_POINTER_REGNUM] = "%i7"; \ /* Disable leaf functions */ \ - bzero (sparc_leaf_regs, FIRST_PSEUDO_REGISTER); \ + memset (sparc_leaf_regs, 0, FIRST_PSEUDO_REGISTER); \ } \ if (profile_block_flag) \ { \ diff --git a/gcc/config/vax/xm-vms.h b/gcc/config/vax/xm-vms.h index a121e5e5c0b..e2980f29fd6 100644 --- a/gcc/config/vax/xm-vms.h +++ b/gcc/config/vax/xm-vms.h @@ -98,9 +98,9 @@ Boston, MA 02111-1307, USA. */ pnt1_ = pnt_ - 1; \ while (*++pnt1_) \ if ((*pnt1_ >= 'A' && *pnt1_ <= 'Z')) *pnt1_ |= 0x20; \ - pnt1_ = rindex (pnt_, ']'); \ - pnt1_ = (pnt1_ == 0 ? rindex (pnt_, '>') : pnt1_); \ - pnt1_ = (pnt1_ == 0 ? rindex (pnt_, ':') : pnt1_); \ + pnt1_ = strrchr (pnt_, ']'); \ + pnt1_ = (pnt1_ == 0 ? strrchr (pnt_, '>') : pnt1_); \ + pnt1_ = (pnt1_ == 0 ? strrchr (pnt_, ':') : pnt1_); \ (pnt1_ == 0 ? pnt_ : pnt1_ + 1); \ }) diff --git a/gcc/configure b/gcc/configure index a9aa175a998..f3877b24cbf 100755 --- a/gcc/configure +++ b/gcc/configure @@ -2557,8 +2557,8 @@ EOF fi -for ac_func in strtoul bsearch putenv popen bcopy bzero bcmp \ - index rindex strchr strrchr kill getrlimit setrlimit atoll atoq \ +for ac_func in strtoul bsearch putenv popen bcopy \ + strchr strrchr kill getrlimit setrlimit atoll atoq \ sysconf isascii gettimeofday strsignal putc_unlocked fputc_unlocked \ fputs_unlocked getrusage valloc iconv nl_langinfo do @@ -3475,8 +3475,8 @@ fi # We will need to find libiberty.h and ansidecl.h saved_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS -I${srcdir} -I${srcdir}/../include" -for ac_func in bcopy bzero bcmp \ - index rindex getenv atol sbrk abort atof getcwd getwd \ +for ac_func in bcopy \ + getenv atol sbrk abort atof getcwd getwd \ strsignal putc_unlocked fputs_unlocked strstr environ \ malloc realloc calloc free basename getopt do @@ -3526,21 +3526,9 @@ done if test x = y ; then cat >> confdefs.h <> confdefs.h <> confdefs.h <> confdefs.h <> confdefs.h <> confdefs.h <> confdefs.h <&6 -echo "configure:3607: checking whether $ac_func is declared" >&5 +echo "configure:3595: checking whether $ac_func is declared" >&5 if eval "test \"`echo '$''{'gcc_cv_have_decl_$ac_func'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3615: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* eval "gcc_cv_have_decl_$ac_func=yes" else @@ -3666,12 +3654,12 @@ CFLAGS="$saved_CFLAGS" # mkdir takes a single argument on some systems. echo $ac_n "checking if mkdir takes one argument""... $ac_c" 1>&6 -echo "configure:3670: checking if mkdir takes one argument" >&5 +echo "configure:3658: checking if mkdir takes one argument" >&5 if eval "test \"`echo '$''{'gcc_cv_mkdir_takes_one_arg'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < @@ -3688,7 +3676,7 @@ int main() { mkdir ("foo", 0); ; return 0; } EOF -if { (eval echo configure:3692: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3680: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* gcc_cv_mkdir_takes_one_arg=no else @@ -7219,7 +7207,7 @@ fi echo $ac_n "checking for strerror in -lcposix""... $ac_c" 1>&6 -echo "configure:7230: checking for strerror in -lcposix" >&5 +echo "configure:7211: checking for strerror in -lcposix" >&5 ac_lib_var=`echo cposix'_'strerror | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -7227,7 +7215,7 @@ else ac_save_LIBS="$LIBS" LIBS="-lcposix $LIBS" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:7230: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -7261,12 +7249,12 @@ fi echo $ac_n "checking for working const""... $ac_c" 1>&6 -echo "configure:7272: checking for working const" >&5 +echo "configure:7253: checking for working const" >&5 if eval "test \"`echo '$''{'ac_cv_c_const'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:7307: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ac_cv_c_const=yes else @@ -7336,12 +7324,12 @@ EOF fi echo $ac_n "checking for off_t""... $ac_c" 1>&6 -echo "configure:7347: checking for off_t" >&5 +echo "configure:7328: checking for off_t" >&5 if eval "test \"`echo '$''{'ac_cv_type_off_t'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < #if STDC_HEADERS @@ -7369,12 +7357,12 @@ EOF fi echo $ac_n "checking for size_t""... $ac_c" 1>&6 -echo "configure:7380: checking for size_t" >&5 +echo "configure:7361: checking for size_t" >&5 if eval "test \"`echo '$''{'ac_cv_type_size_t'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < #if STDC_HEADERS @@ -7404,19 +7392,19 @@ fi # The Ultrix 4.2 mips builtin alloca declared by alloca.h only works # for constant arguments. Useless! echo $ac_n "checking for working alloca.h""... $ac_c" 1>&6 -echo "configure:7415: checking for working alloca.h" >&5 +echo "configure:7396: checking for working alloca.h" >&5 if eval "test \"`echo '$''{'ac_cv_header_alloca_h'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < int main() { char *p = alloca(2 * sizeof(int)); ; return 0; } EOF -if { (eval echo configure:7427: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:7408: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* ac_cv_header_alloca_h=yes else @@ -7437,12 +7425,12 @@ EOF fi echo $ac_n "checking for alloca""... $ac_c" 1>&6 -echo "configure:7448: checking for alloca" >&5 +echo "configure:7429: checking for alloca" >&5 if eval "test \"`echo '$''{'ac_cv_func_alloca_works'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:7462: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* ac_cv_func_alloca_works=yes else @@ -7502,12 +7490,12 @@ EOF echo $ac_n "checking whether alloca needs Cray hooks""... $ac_c" 1>&6 -echo "configure:7513: checking whether alloca needs Cray hooks" >&5 +echo "configure:7494: checking whether alloca needs Cray hooks" >&5 if eval "test \"`echo '$''{'ac_cv_os_cray'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&6 if test $ac_cv_os_cray = yes; then for ac_func in _getb67 GETB67 getb67; do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:7543: checking for $ac_func" >&5 +echo "configure:7524: checking for $ac_func" >&5 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:7552: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else @@ -7587,7 +7575,7 @@ done fi echo $ac_n "checking stack direction for C alloca""... $ac_c" 1>&6 -echo "configure:7598: checking stack direction for C alloca" >&5 +echo "configure:7579: checking stack direction for C alloca" >&5 if eval "test \"`echo '$''{'ac_cv_c_stack_direction'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -7595,7 +7583,7 @@ else ac_cv_c_stack_direction=0 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:7606: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then ac_cv_c_stack_direction=1 else @@ -7641,17 +7629,17 @@ unistd.h sys/param.h do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 -echo "configure:7652: checking for $ac_hdr" >&5 +echo "configure:7633: checking for $ac_hdr" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:7662: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:7643: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -7681,12 +7669,12 @@ done strdup __argz_count __argz_stringify __argz_next do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:7692: checking for $ac_func" >&5 +echo "configure:7673: checking for $ac_func" >&5 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:7701: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else @@ -7738,12 +7726,12 @@ done for ac_func in stpcpy do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:7749: checking for $ac_func" >&5 +echo "configure:7730: checking for $ac_func" >&5 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:7758: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else @@ -7800,19 +7788,19 @@ EOF if test $ac_cv_header_locale_h = yes; then echo $ac_n "checking for LC_MESSAGES""... $ac_c" 1>&6 -echo "configure:7811: checking for LC_MESSAGES" >&5 +echo "configure:7792: checking for LC_MESSAGES" >&5 if eval "test \"`echo '$''{'am_cv_val_LC_MESSAGES'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < int main() { return LC_MESSAGES ; return 0; } EOF -if { (eval echo configure:7823: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:7804: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* am_cv_val_LC_MESSAGES=yes else @@ -7833,7 +7821,7 @@ EOF fi fi echo $ac_n "checking whether NLS is requested""... $ac_c" 1>&6 -echo "configure:7844: checking whether NLS is requested" >&5 +echo "configure:7825: checking whether NLS is requested" >&5 # Check whether --enable-nls or --disable-nls was given. if test "${enable_nls+set}" = set; then enableval="$enable_nls" @@ -7853,7 +7841,7 @@ fi EOF echo $ac_n "checking whether included gettext is requested""... $ac_c" 1>&6 -echo "configure:7864: checking whether included gettext is requested" >&5 +echo "configure:7845: checking whether included gettext is requested" >&5 # Check whether --with-included-gettext or --without-included-gettext was given. if test "${with_included_gettext+set}" = set; then withval="$with_included_gettext" @@ -7872,17 +7860,17 @@ fi ac_safe=`echo "libintl.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for libintl.h""... $ac_c" 1>&6 -echo "configure:7883: checking for libintl.h" >&5 +echo "configure:7864: checking for libintl.h" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:7893: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:7874: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -7899,19 +7887,19 @@ fi if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then echo "$ac_t""yes" 1>&6 echo $ac_n "checking for gettext in libc""... $ac_c" 1>&6 -echo "configure:7910: checking for gettext in libc" >&5 +echo "configure:7891: checking for gettext in libc" >&5 if eval "test \"`echo '$''{'gt_cv_func_gettext_libc'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < int main() { return (int) gettext ("") ; return 0; } EOF -if { (eval echo configure:7922: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:7903: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* gt_cv_func_gettext_libc=yes else @@ -7927,7 +7915,7 @@ echo "$ac_t""$gt_cv_func_gettext_libc" 1>&6 if test "$gt_cv_func_gettext_libc" != "yes"; then echo $ac_n "checking for bindtextdomain in -lintl""... $ac_c" 1>&6 -echo "configure:7938: checking for bindtextdomain in -lintl" >&5 +echo "configure:7919: checking for bindtextdomain in -lintl" >&5 ac_lib_var=`echo intl'_'bindtextdomain | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -7935,7 +7923,7 @@ else ac_save_LIBS="$LIBS" LIBS="-lintl $LIBS" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:7938: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -7962,12 +7950,12 @@ fi if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then echo "$ac_t""yes" 1>&6 echo $ac_n "checking for gettext in libintl""... $ac_c" 1>&6 -echo "configure:7973: checking for gettext in libintl" >&5 +echo "configure:7954: checking for gettext in libintl" >&5 if eval "test \"`echo '$''{'gt_cv_func_gettext_libintl'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else echo $ac_n "checking for gettext in -lintl""... $ac_c" 1>&6 -echo "configure:7978: checking for gettext in -lintl" >&5 +echo "configure:7959: checking for gettext in -lintl" >&5 ac_lib_var=`echo intl'_'gettext | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -7975,7 +7963,7 @@ else ac_save_LIBS="$LIBS" LIBS="-lintl $LIBS" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:7978: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -8025,7 +8013,7 @@ EOF # Extract the first word of "msgfmt", so it can be a program name with args. set dummy msgfmt; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:8036: checking for $ac_word" >&5 +echo "configure:8017: checking for $ac_word" >&5 if eval "test \"`echo '$''{'gcc_cv_path_MSGFMT'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -8059,12 +8047,12 @@ fi for ac_func in dcgettext do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:8070: checking for $ac_func" >&5 +echo "configure:8051: checking for $ac_func" >&5 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:8079: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else @@ -8114,7 +8102,7 @@ done # Extract the first word of "gmsgfmt", so it can be a program name with args. set dummy gmsgfmt; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:8125: checking for $ac_word" >&5 +echo "configure:8106: checking for $ac_word" >&5 if eval "test \"`echo '$''{'gcc_cv_path_GMSGFMT'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -8150,7 +8138,7 @@ fi # Extract the first word of "xgettext", so it can be a program name with args. set dummy xgettext; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:8161: checking for $ac_word" >&5 +echo "configure:8142: checking for $ac_word" >&5 if eval "test \"`echo '$''{'gcc_cv_path_XGETTEXT'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -8182,7 +8170,7 @@ else fi cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:8182: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* CATOBJEXT=.gmo DATADIRNAME=share @@ -8215,7 +8203,7 @@ fi if test "$CATOBJEXT" = "NONE"; then echo $ac_n "checking whether catgets can be used""... $ac_c" 1>&6 -echo "configure:8226: checking whether catgets can be used" >&5 +echo "configure:8207: checking whether catgets can be used" >&5 # Check whether --with-catgets or --without-catgets was given. if test "${with_catgets+set}" = set; then withval="$with_catgets" @@ -8228,7 +8216,7 @@ fi if test "$nls_cv_use_catgets" = "yes"; then echo $ac_n "checking for main in -li""... $ac_c" 1>&6 -echo "configure:8239: checking for main in -li" >&5 +echo "configure:8220: checking for main in -li" >&5 ac_lib_var=`echo i'_'main | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -8236,14 +8224,14 @@ else ac_save_LIBS="$LIBS" LIBS="-li $LIBS" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:8235: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -8271,12 +8259,12 @@ else fi echo $ac_n "checking for catgets""... $ac_c" 1>&6 -echo "configure:8282: checking for catgets" >&5 +echo "configure:8263: checking for catgets" >&5 if eval "test \"`echo '$''{'ac_cv_func_catgets'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:8291: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_catgets=yes" else @@ -8321,7 +8309,7 @@ EOF # Extract the first word of "gencat", so it can be a program name with args. set dummy gencat; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:8332: checking for $ac_word" >&5 +echo "configure:8313: checking for $ac_word" >&5 if eval "test \"`echo '$''{'gcc_cv_path_GENCAT'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -8357,7 +8345,7 @@ fi # Extract the first word of "gmsgfmt", so it can be a program name with args. set dummy gmsgfmt; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:8368: checking for $ac_word" >&5 +echo "configure:8349: checking for $ac_word" >&5 if eval "test \"`echo '$''{'gcc_cv_path_GMSGFMT'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -8394,7 +8382,7 @@ fi # Extract the first word of "msgfmt", so it can be a program name with args. set dummy msgfmt; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:8405: checking for $ac_word" >&5 +echo "configure:8386: checking for $ac_word" >&5 if eval "test \"`echo '$''{'gcc_cv_path_GMSGFMT'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -8432,7 +8420,7 @@ fi # Extract the first word of "xgettext", so it can be a program name with args. set dummy xgettext; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:8443: checking for $ac_word" >&5 +echo "configure:8424: checking for $ac_word" >&5 if eval "test \"`echo '$''{'gcc_cv_path_XGETTEXT'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -8490,7 +8478,7 @@ fi # Extract the first word of "msgfmt", so it can be a program name with args. set dummy msgfmt; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:8501: checking for $ac_word" >&5 +echo "configure:8482: checking for $ac_word" >&5 if eval "test \"`echo '$''{'gcc_cv_path_MSGFMT'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -8524,7 +8512,7 @@ fi # Extract the first word of "gmsgfmt", so it can be a program name with args. set dummy gmsgfmt; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:8535: checking for $ac_word" >&5 +echo "configure:8516: checking for $ac_word" >&5 if eval "test \"`echo '$''{'gcc_cv_path_GMSGFMT'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -8563,7 +8551,7 @@ fi # Extract the first word of "xgettext", so it can be a program name with args. set dummy xgettext; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:8574: checking for $ac_word" >&5 +echo "configure:8555: checking for $ac_word" >&5 if eval "test \"`echo '$''{'gcc_cv_path_XGETTEXT'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -8662,7 +8650,7 @@ fi LINGUAS= else echo $ac_n "checking for catalogs to be installed""... $ac_c" 1>&6 -echo "configure:8673: checking for catalogs to be installed" >&5 +echo "configure:8654: checking for catalogs to be installed" >&5 if test "x$LINGUAS" = "x"; then LINGUAS=$ALL_LINGUAS else @@ -8694,17 +8682,17 @@ echo "configure:8673: checking for catalogs to be installed" >&5 if test "$CATOBJEXT" = ".cat"; then ac_safe=`echo "linux/version.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for linux/version.h""... $ac_c" 1>&6 -echo "configure:8705: checking for linux/version.h" >&5 +echo "configure:8686: checking for linux/version.h" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:8715: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:8696: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -8779,7 +8767,7 @@ fi echo $ac_n "checking whether windows registry support is requested""... $ac_c" 1>&6 -echo "configure:8790: checking whether windows registry support is requested" >&5 +echo "configure:8771: checking whether windows registry support is requested" >&5 if test x$enable_win32_registry != xno; then cat >> confdefs.h <<\EOF #define ENABLE_WIN32_REGISTRY 1 @@ -8808,7 +8796,7 @@ esac if test x$enable_win32_registry != xno; then echo $ac_n "checking registry key on windows hosts""... $ac_c" 1>&6 -echo "configure:8819: checking registry key on windows hosts" >&5 +echo "configure:8800: checking registry key on windows hosts" >&5 cat >> confdefs.h <&6 -echo "configure:9013: checking what assembler to use" >&5 +echo "configure:8994: checking what assembler to use" >&5 gcc_cv_as= gcc_cv_gas_major_version= gcc_cv_gas_minor_version= @@ -9087,7 +9075,7 @@ fi # Figure out what nm we will be using. echo $ac_n "checking what nm to use""... $ac_c" 1>&6 -echo "configure:9098: checking what nm to use" >&5 +echo "configure:9079: checking what nm to use" >&5 if test -x nm$host_exeext; then gcc_cv_nm=./nm$host_exeext elif test x$host = x$target; then @@ -9098,7 +9086,7 @@ echo "$ac_t""$gcc_cv_nm" 1>&6 # Figure out what assembler alignment features are present. echo $ac_n "checking assembler alignment features""... $ac_c" 1>&6 -echo "configure:9109: checking assembler alignment features" >&5 +echo "configure:9090: checking assembler alignment features" >&5 gcc_cv_as_alignment_features= if test x$gcc_cv_gas_major_version != x -a x$gcc_cv_gas_minor_version != x; then # Gas version 2.6 and later support for .balign and .p2align. @@ -9146,7 +9134,7 @@ fi echo "$ac_t""$gcc_cv_as_alignment_features" 1>&6 echo $ac_n "checking assembler subsection support""... $ac_c" 1>&6 -echo "configure:9157: checking assembler subsection support" >&5 +echo "configure:9138: checking assembler subsection support" >&5 gcc_cv_as_subsections= if test x$gcc_cv_gas_major_version != x -a x$gcc_cv_gas_minor_version != x; then if test "$gcc_cv_gas_major_version" -eq 2 -a "$gcc_cv_gas_minor_version" -ge 9 -o "$gcc_cv_gas_major_version" -gt 2 && grep 'obj_format = elf' ../gas/Makefile > /dev/null; then @@ -9186,7 +9174,7 @@ fi echo "$ac_t""$gcc_cv_as_subsections" 1>&6 echo $ac_n "checking assembler weak support""... $ac_c" 1>&6 -echo "configure:9197: checking assembler weak support" >&5 +echo "configure:9178: checking assembler weak support" >&5 gcc_cv_as_weak= if test x$gcc_cv_gas_major_version != x -a x$gcc_cv_gas_minor_version != x; then if test "$gcc_cv_gas_major_version" -eq 2 -a "$gcc_cv_gas_minor_version" -ge 2 -o "$gcc_cv_gas_major_version" -gt 2; then @@ -9209,7 +9197,7 @@ fi echo "$ac_t""$gcc_cv_as_weak" 1>&6 echo $ac_n "checking assembler hidden support""... $ac_c" 1>&6 -echo "configure:9220: checking assembler hidden support" >&5 +echo "configure:9201: checking assembler hidden support" >&5 gcc_cv_as_hidden= if test x$gcc_cv_gas_major_version != x -a x$gcc_cv_gas_minor_version != x; then if test "$gcc_cv_gas_major_version" -eq 2 -a "$gcc_cv_gas_minor_version" -ge 10 -o "$gcc_cv_gas_major_version" -gt 2 && grep 'obj_format = elf' ../gas/Makefile > /dev/null; then @@ -9235,7 +9223,7 @@ echo "$ac_t""$gcc_cv_as_hidden" 1>&6 case "$target" in sparc*-*-*) echo $ac_n "checking assembler .register pseudo-op support""... $ac_c" 1>&6 -echo "configure:9246: checking assembler .register pseudo-op support" >&5 +echo "configure:9227: checking assembler .register pseudo-op support" >&5 if eval "test \"`echo '$''{'gcc_cv_as_register_pseudo_op'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -9263,7 +9251,7 @@ EOF fi echo $ac_n "checking assembler supports -relax""... $ac_c" 1>&6 -echo "configure:9274: checking assembler supports -relax" >&5 +echo "configure:9255: checking assembler supports -relax" >&5 if eval "test \"`echo '$''{'gcc_cv_as_relax_opt'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -9293,7 +9281,7 @@ EOF case "$tm_file" in *64*) echo $ac_n "checking for 64 bit support in assembler ($gcc_cv_as)""... $ac_c" 1>&6 -echo "configure:9304: checking for 64 bit support in assembler ($gcc_cv_as)" >&5 +echo "configure:9285: checking for 64 bit support in assembler ($gcc_cv_as)" >&5 if eval "test \"`echo '$''{'gcc_cv_as_flags64'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -9338,7 +9326,7 @@ EOF if test "x$gcc_cv_as_flags64" != xno; then echo $ac_n "checking for assembler offsetable %lo() support""... $ac_c" 1>&6 -echo "configure:9349: checking for assembler offsetable %lo() support" >&5 +echo "configure:9330: checking for assembler offsetable %lo() support" >&5 if eval "test \"`echo '$''{'gcc_cv_as_offsetable_lo10'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -9377,7 +9365,7 @@ EOF i[34567]86-*-*) echo $ac_n "checking assembler instructions""... $ac_c" 1>&6 -echo "configure:9388: checking assembler instructions" >&5 +echo "configure:9369: checking assembler instructions" >&5 gcc_cv_as_instructions= if test x$gcc_cv_gas_major_version != x -a x$gcc_cv_gas_minor_version != x; then if test "$gcc_cv_gas_major_version" -eq 2 -a "$gcc_cv_gas_minor_version" -ge 9 -o "$gcc_cv_gas_major_version" -gt 2; then @@ -9527,7 +9515,7 @@ fi # Build a new-libstdc++ system (ie libstdc++-v3) echo $ac_n "checking for libstdc++ to install""... $ac_c" 1>&6 -echo "configure:9538: checking for libstdc++ to install" >&5 +echo "configure:9519: checking for libstdc++ to install" >&5 # Check whether --enable-libstdcxx-v3 or --disable-libstdcxx-v3 was given. if test "${enable_libstdcxx_v3+set}" = set; then enableval="$enable_libstdcxx_v3" @@ -9554,7 +9542,7 @@ EOF echo $ac_n "checking whether to enable maintainer-specific portions of Makefiles""... $ac_c" 1>&6 -echo "configure:9565: checking whether to enable maintainer-specific portions of Makefiles" >&5 +echo "configure:9546: checking whether to enable maintainer-specific portions of Makefiles" >&5 # Check whether --enable-maintainer-mode or --disable-maintainer-mode was given. if test "${enable_maintainer_mode+set}" = set; then enableval="$enable_maintainer_mode" diff --git a/gcc/configure.in b/gcc/configure.in index 03077231d82..8d6d68b7840 100644 --- a/gcc/configure.in +++ b/gcc/configure.in @@ -510,8 +510,8 @@ if test $gcc_cv_enum_bf_unsigned = yes; then [Define if enumerated bitfields are treated as unsigned values.]) fi -AC_CHECK_FUNCS(strtoul bsearch putenv popen bcopy bzero bcmp \ - index rindex strchr strrchr kill getrlimit setrlimit atoll atoq \ +AC_CHECK_FUNCS(strtoul bsearch putenv popen bcopy \ + strchr strrchr kill getrlimit setrlimit atoll atoq \ sysconf isascii gettimeofday strsignal putc_unlocked fputc_unlocked \ fputs_unlocked getrusage valloc iconv nl_langinfo) @@ -555,8 +555,8 @@ AC_FUNC_MMAP_FILE # We will need to find libiberty.h and ansidecl.h saved_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS -I${srcdir} -I${srcdir}/../include" -gcc_AC_CHECK_DECLS(bcopy bzero bcmp \ - index rindex getenv atol sbrk abort atof getcwd getwd \ +gcc_AC_CHECK_DECLS(bcopy \ + getenv atol sbrk abort atof getcwd getwd \ strsignal putc_unlocked fputs_unlocked strstr environ \ malloc realloc calloc free basename getopt, , ,[ #include "gansidecl.h" diff --git a/gcc/java/ChangeLog b/gcc/java/ChangeLog index b10ac43d57f..7ca5533d975 100644 --- a/gcc/java/ChangeLog +++ b/gcc/java/ChangeLog @@ -1,3 +1,8 @@ +2000-11-09 Joseph S. Myers + + * parse.y (create_new_parser_context): Use memset () instead of + bzero (). + 2000-11-08 Tom Tromey * gjavah.c (process_file): Only include gcj/cni.h when generating diff --git a/gcc/java/parse.y b/gcc/java/parse.y index b705fc6f594..6cf1a44f429 100644 --- a/gcc/java/parse.y +++ b/gcc/java/parse.y @@ -2615,7 +2615,7 @@ create_new_parser_context (copy_from_previous) new->saved_data_ctx = 1; } else - bzero ((PTR) new, sizeof (struct parser_ctxt)); + memset ((PTR) new, 0, sizeof (struct parser_ctxt)); new->next = ctxp; ctxp = new; diff --git a/gcc/real.h b/gcc/real.h index b9ee6066837..a6ea868a675 100644 --- a/gcc/real.h +++ b/gcc/real.h @@ -327,7 +327,7 @@ do { \ -0.0 equals 0.0 but they are not identical, and conversely two NaNs might be identical but they cannot be equal. */ #define REAL_VALUES_IDENTICAL(x, y) \ - (!bcmp ((char *) &(x), (char *) &(y), sizeof (REAL_VALUE_TYPE))) + (!memcmp ((char *) &(x), (char *) &(y), sizeof (REAL_VALUE_TYPE))) /* Compare two floating-point values for equality. */ #ifndef REAL_VALUES_EQUAL diff --git a/gcc/system.h b/gcc/system.h index 0021a57b27a..f0b7b649f8a 100644 --- a/gcc/system.h +++ b/gcc/system.h @@ -336,46 +336,6 @@ extern void bcopy PARAMS ((const PTR, PTR, size_t)); # endif #endif -#ifndef bcmp -# ifdef HAVE_BCMP -# if defined (HAVE_DECL_BCMP) && !HAVE_DECL_BCMP -extern int bcmp PARAMS ((const PTR, const PTR, size_t)); -# endif -# else /* ! HAVE_BCMP */ -# define bcmp(left,right,len) memcmp ((left),(right),(len)) -# endif -#endif - -#ifndef bzero -# ifdef HAVE_BZERO -# if defined (HAVE_DECL_BZERO) && !HAVE_DECL_BZERO -extern void bzero PARAMS ((PTR, size_t)); -# endif -# else /* ! HAVE_BZERO */ -# define bzero(dst,len) memset ((dst),0,(len)) -# endif -#endif - -#ifndef index -# ifdef HAVE_INDEX -# if defined (HAVE_DECL_INDEX) && !HAVE_DECL_INDEX -extern char *index PARAMS ((const char *, int)); -# endif -# else /* ! HAVE_INDEX */ -# define index strchr -# endif -#endif - -#ifndef rindex -# ifdef HAVE_RINDEX -# if defined (HAVE_DECL_RINDEX) && !HAVE_DECL_RINDEX -extern char *rindex PARAMS ((const char *, int)); -# endif -# else /* ! HAVE_RINDEX */ -# define rindex strrchr -# endif -#endif - #if defined (HAVE_DECL_ATOF) && !HAVE_DECL_ATOF extern double atof PARAMS ((const char *)); #endif