Dmitry V. Levin
916adeda63
* Makefile.am (ACLOCAL_AMFLAGS): Add "-I m4". * acinclude.m4: Remove. * m4/includedir.m4: New file, with definition of AC_INCLUDEDIR from acinclude.m4. * m4/long_long.m4: New file, with definitions of AC_OFF_T_IS_LONG_LONG, AC_RLIM_T_IS_LONG_LONG and AC_LITTLE_ENDIAN_LONG_LONG from acinclude.m4. * m4/procfs.m4: New file, with definitions of AC_MP_PROCFS, AC_POLLABLE_PROCFS and AC_STRUCT_PR_SYSCALL from acinclude.m4. * m4/stat.m4: New file, with definition of AC_STAT64 from acinclude.m4. * m4/statfs.m4: New file, with definition of AC_STATFS64 from acinclude.m4. * m4/warnings.m4: New file, with definition of AC_WARNFLAGS from acinclude.m4.
19 lines
549 B
Plaintext
19 lines
549 B
Plaintext
dnl ### A macro to determine whether stat64 is defined.
|
|
AC_DEFUN([AC_STAT64],
|
|
[AC_MSG_CHECKING(for stat64 in (asm|sys)/stat.h)
|
|
AC_CACHE_VAL(ac_cv_type_stat64,
|
|
[AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <sys/types.h>
|
|
#ifdef LINUX
|
|
#include <linux/types.h>
|
|
#include <asm/stat.h>
|
|
#else
|
|
#include <sys/stat.h>
|
|
#endif]], [[struct stat64 st;]])],[ac_cv_type_stat64=yes],[ac_cv_type_stat64=no])])
|
|
AC_MSG_RESULT($ac_cv_type_stat64)
|
|
if test "$ac_cv_type_stat64" = yes
|
|
then
|
|
AC_DEFINE([HAVE_STAT64], 1,
|
|
[Define if stat64 is available in asm/stat.h.])
|
|
fi
|
|
])
|