diff options
author | Miklos Szeredi <miklos@szeredi.hu> | 2004-06-23 18:52:50 +0000 |
---|---|---|
committer | Miklos Szeredi <miklos@szeredi.hu> | 2004-06-23 18:52:50 +0000 |
commit | cb26451550ee7a9e321cc2fc1cc337579797ec30 (patch) | |
tree | 6821e6a45f8dd6b4843bbc445661f80e84800b8a /configure.in | |
parent | b32105803093b758df251dcdfd5dc4d07636dfd1 (diff) | |
download | libfuse-cb26451550ee7a9e321cc2fc1cc337579797ec30.tar.gz |
build fixes
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/configure.in b/configure.in index c9b2518..9b93123 100644 --- a/configure.in +++ b/configure.in @@ -2,8 +2,10 @@ AC_INIT(lib/fuse.c) AM_INIT_AUTOMAKE(fuse, 1.1) AM_CONFIG_HEADER(include/config.h) +m4_ifdef([LT_INIT], + [LT_INIT], + [AC_PROG_LIBTOOL]) AC_PROG_CC -AC_PROG_LIBTOOL if test -z "$LD"; then LD=ld @@ -107,6 +109,7 @@ if test "$enable_example" != "no"; then fi AC_CHECK_FUNCS([setxattr]) +AC_CHECK_MEMBERS([struct stat.st_atim]) AC_SUBST(subdirs) |