diff options
author | Rob Browning <rlb@defaultvalue.org> | 2003-03-03 18:29:58 +0000 |
---|---|---|
committer | Rob Browning <rlb@defaultvalue.org> | 2003-03-03 18:29:58 +0000 |
commit | b0e442481b4718f1f372381e6be78ce7aaf7b522 (patch) | |
tree | 43a2a9b6b167e1071cafc3f76f3c03fe9db1790c /configure | |
parent | 285286045fedc427d537a1dae9823d27ba3a3823 (diff) | |
download | emacs-b0e442481b4718f1f372381e6be78ce7aaf7b522.tar.gz |
* configure.in: add AC_CHECK_FUNCS for memcmp and memmove.
(AH_BOTTOM): switch tests to prefer memcmp, memset, and memmove
over bzero, bcmp, and bcopy.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/configure b/configure index 77b1741c96c..a655838d017 100755 --- a/configure +++ b/configure @@ -2010,6 +2010,9 @@ case "${canonical}" in hppa*-hp-hpux9* ) machine=hp800 opsys=hpux9 ;; + hppa*-hp-hpux10.2* ) + machine=hp800 opsys=hpux10-20 + ;; hppa*-hp-hpux10* ) machine=hp800 opsys=hpux10 ;; @@ -11207,6 +11210,8 @@ done + + for ac_func in gethostname getdomainname dup2 \ rename closedir mkdir rmdir sysinfo \ random lrand48 bcopy bcmp logb frexp fmod rint cbrt ftime res_init setsid \ @@ -11214,7 +11219,8 @@ strerror fpathconf select mktime euidaccess getpagesize tzset setlocale \ utimes setrlimit setpgid getcwd getwd shutdown strftime getaddrinfo \ __fpending mblen mbrlen mbsinit strsignal setitimer ualarm index rindex \ sendto recvfrom getsockopt setsockopt getsockname getpeername \ -gai_strerror mkstemp getline getdelim mremap memmove fsync bzero memset +gai_strerror mkstemp getline getdelim mremap memmove fsync bzero \ +memset memcmp memmove do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` echo "$as_me:$LINENO: checking for $ac_func" >&5 |