2012-10-26 20:56:34 +08:00
|
|
|
# -*- Autoconf -*-
|
|
|
|
# Process this file with autoconf to produce a configure script.
|
|
|
|
|
|
|
|
AC_PREREQ([2.68])
|
2012-10-30 06:38:59 +08:00
|
|
|
AC_INIT([F2FS tools], [1.0.0], [http://sourceforge.net/projects/f2fs-tools/])
|
2012-10-26 20:56:34 +08:00
|
|
|
AM_INIT_AUTOMAKE
|
|
|
|
AC_CONFIG_SRCDIR([mkfs/f2fs_format.c])
|
2012-10-30 06:38:59 +08:00
|
|
|
AC_CHECK_HEADERS_ONCE(m4_flatten([
|
|
|
|
fcntl.h
|
|
|
|
mntent.h
|
|
|
|
stdlib.h
|
|
|
|
string.h
|
|
|
|
unistd.h
|
|
|
|
sys/ioctl.h
|
|
|
|
sys/mount.h
|
|
|
|
]))
|
2012-10-26 20:56:34 +08:00
|
|
|
|
|
|
|
# Checks for programs.
|
|
|
|
AC_PROG_CC
|
|
|
|
|
|
|
|
# Checks for libraries.
|
2012-10-30 06:35:00 +08:00
|
|
|
AC_CHECK_LIB([uuid], [uuid_generate],
|
|
|
|
[AC_DEFINE([HAVE_LIBUUID], 1,
|
|
|
|
[Define to 1 if you have the 'uuid' library (-luuid).])],
|
|
|
|
[AC_MSG_ERROR([UUID library not found])])
|
2012-10-26 20:56:34 +08:00
|
|
|
|
|
|
|
# Checks for header files.
|
|
|
|
AC_CHECK_HEADERS([fcntl.h mntent.h stdlib.h string.h sys/ioctl.h sys/mount.h unistd.h])
|
|
|
|
|
|
|
|
# Checks for typedefs, structures, and compiler characteristics.
|
|
|
|
AC_C_INLINE
|
|
|
|
AC_TYPE_INT32_T
|
|
|
|
AC_TYPE_INT8_T
|
|
|
|
AC_TYPE_SIZE_T
|
|
|
|
|
|
|
|
# Checks for library functions.
|
|
|
|
AC_FUNC_GETMNTENT
|
2012-10-30 06:38:59 +08:00
|
|
|
AC_CHECK_FUNCS_ONCE(m4_flatten([
|
|
|
|
getmntent
|
|
|
|
memset
|
|
|
|
]))
|
|
|
|
|
|
|
|
AC_CONFIG_FILES(m4_flatten([
|
|
|
|
Makefile
|
|
|
|
man/Makefile
|
|
|
|
mkfs/Makefile
|
|
|
|
]))
|
2012-10-26 20:56:34 +08:00
|
|
|
|
|
|
|
AC_OUTPUT
|