aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJim Blandy1993-08-03 06:57:03 +0000
committerJim Blandy1993-08-03 06:57:03 +0000
commitd50a54c0f1638025b2a08d8a827fe787ea2a039f (patch)
tree79934e7cfbcd45b94164206ac1db10bd107a7d89
parent5ed8d62f52b7d6bbbd01e2ba83ad46ccbe92ddc9 (diff)
downloademacs-d50a54c0f1638025b2a08d8a827fe787ea2a039f.tar.gz
emacs-d50a54c0f1638025b2a08d8a827fe787ea2a039f.zip
* configure.in (function checks): Test for mkdir and rmdir.
* configure.in (function checks): Don't test for random and bcopy only when we're building with X; look for them all the time.
-rwxr-xr-xconfigure1.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure1.in b/configure1.in
index 5aefb917feb..d1f4ed20674 100755
--- a/configure1.in
+++ b/configure1.in
@@ -1169,11 +1169,11 @@ AC_HAVE_LIBRARY(-lXbsd, LD_SWITCH_X_SITE="$LD_SWITCH_X_SITE -lXbsd"
1169if test "${HAVE_X11}" = "yes"; then 1169if test "${HAVE_X11}" = "yes"; then
1170 DEFS="$C_SWITCH_X_SITE $DEFS" 1170 DEFS="$C_SWITCH_X_SITE $DEFS"
1171 LIBS="$LD_SWITCH_X_SITE $LIBX $LIBS" 1171 LIBS="$LD_SWITCH_X_SITE $LIBX $LIBS"
1172 AC_HAVE_FUNCS(XrmSetDatabase XScreenResourceString random bcopy) 1172 AC_HAVE_FUNCS(XrmSetDatabase XScreenResourceString)
1173fi 1173fi
1174 1174
1175AC_ALLOCA 1175AC_ALLOCA
1176AC_HAVE_FUNCS(gettimeofday gethostname dup2 rename closedir) 1176AC_HAVE_FUNCS(gettimeofday gethostname dup2 rename closedir mkdir rmdir random bcopy)
1177 1177
1178ok_so_far=true 1178ok_so_far=true
1179AC_FUNC_CHECK(socket, , ok_so_far=) 1179AC_FUNC_CHECK(socket, , ok_so_far=)