mirror of
https://git.savannah.gnu.org/git/make.git
synced 2025-02-05 22:17:05 +00:00
Formerly configure.in.~3~
This commit is contained in:
parent
21d566bf51
commit
e567c8d914
1 changed files with 5 additions and 0 deletions
|
@ -18,11 +18,16 @@ AC_HAVE_HEADERS(limits.h sys/param.h)
|
||||||
AC_MINUS_C_MINUS_O
|
AC_MINUS_C_MINUS_O
|
||||||
|
|
||||||
AC_SUBST(LIBOBJS)
|
AC_SUBST(LIBOBJS)
|
||||||
|
ifdef([notdef],
|
||||||
|
# Apparently some systems have a buggy glob function in their C library.
|
||||||
|
# So forget them and always use ours.
|
||||||
AC_COMPILE_CHECK(POSIX.2 glob functions,
|
AC_COMPILE_CHECK(POSIX.2 glob functions,
|
||||||
[#include <glob.h>],
|
[#include <glob.h>],
|
||||||
[glob (0, 0, 0, 0);],
|
[glob (0, 0, 0, 0);],
|
||||||
AC_DEFINE(HAVE_GLOB_H),
|
AC_DEFINE(HAVE_GLOB_H),
|
||||||
[LIBOBJS="$LIBOBJS glob/libglob.a"])
|
[LIBOBJS="$LIBOBJS glob/libglob.a"])
|
||||||
|
)
|
||||||
|
LIBOBJS="$LIBOBJS glob/libglob.a"
|
||||||
|
|
||||||
AC_HAVE_FUNCS(getdtablesize sys_siglist _sys_siglist \
|
AC_HAVE_FUNCS(getdtablesize sys_siglist _sys_siglist \
|
||||||
dup2 getcwd sigsetmask getgroups setlinebuf)
|
dup2 getcwd sigsetmask getgroups setlinebuf)
|
||||||
|
|
Loading…
Reference in a new issue