Hi,

Under ReliantUnix 5.43 wmemchr() and wmemcpy() are not in libc but in libw.

configure should check for this:

AC_CHECK_FUNCS(wmemchr)
if test $ac_cv_func_wmemchr = no; then
  AC_CHECK_LIB(w, wmemchr)
fi

AC_CHECK_FUNCS(wmemcpy)
if test $ac_cv_func_wmemcpy = no; then
  AC_CHECK_LIB(w, wmemcpy)
fi

Regards,
        Robert



-- 
NEU: WLAN-Router f�r 0,- EUR* - auch f�r DSL-Wechsler!
GMX DSL = superg�nstig & kabellos http://www.gmx.net/de/go/dsl



_______________________________________________
Bug-coreutils mailing list
[EMAIL PROTECTED]
http://lists.gnu.org/mailman/listinfo/bug-coreutils

Reply via email to