/usr/share/aclocal-1.4/obstack.m4 is in automake1.4 1:1.4-p6-13.1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | dnl From Jim Meyering.
dnl FIXME: migrate into libit.
AC_DEFUN([AM_FUNC_OBSTACK],
[AC_CACHE_CHECK([for obstacks], am_cv_func_obstack,
[AC_TRY_LINK([#include "obstack.h"],
[struct obstack *mem;obstack_free(mem,(char *) 0)],
am_cv_func_obstack=yes,
am_cv_func_obstack=no)])
if test $am_cv_func_obstack = yes; then
AC_DEFINE(HAVE_OBSTACK,1,[Define if libc includes obstacks])
else
LIBOBJS="$LIBOBJS obstack.o"
fi
])
|