diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-09-04 07:02:34 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-09-04 07:02:34 +0000 |
commit | ad11d3de96dc792964210c54e3daf53d2d991942 (patch) | |
tree | 4c47333a542435486c3a4b3cd2e7c0f2b711c401 /configure1.in | |
parent | 8063726f3192e978f334c4806a5b6ba168aa4242 (diff) | |
download | emacs-ad11d3de96dc792964210c54e3daf53d2d991942.tar.gz emacs-ad11d3de96dc792964210c54e3daf53d2d991942.tar.bz2 emacs-ad11d3de96dc792964210c54e3daf53d2d991942.zip |
Check for lrand48, not rand48.
Diffstat (limited to 'configure1.in')
-rwxr-xr-x | configure1.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure1.in b/configure1.in index d2c4870de45..939aa754930 100755 --- a/configure1.in +++ b/configure1.in @@ -1522,8 +1522,8 @@ AC_ALLOCA # logb and frexp are found in -lm on most systems. AC_HAVE_LIBRARY(-lm) AC_HAVE_FUNCS(gettimeofday gethostname dup2 rename closedir mkdir rmdir \ -random rand48 bcopy bcmp logb frexp fmod drem ftime res_init setsid strerror \ -fpathconf) +random lrand48 bcopy bcmp logb frexp fmod drem ftime res_init setsid \ +strerror fpathconf) ok_so_far=true AC_FUNC_CHECK(socket, , ok_so_far=) |