• Home
  • Raw
  • Download

Lines Matching +full:- +full:- +full:disable +full:- +full:tools

1 #                                               -*- Autoconf -*-
7 m4_define([f2fs_tools_version], m4_esyscmd([sed -n '1p' VERSION | tr -d '\n']))
8 m4_define([f2fs_tools_date], m4_esyscmd([sed -n '2p' VERSION | tr -d '\n']))
10 m4_esyscmd([git log -1 --pretty=format:%ci 2> /dev/null]))
12 AC_INIT([F2FS tools], [f2fs_tools_version],
13 [linux-f2fs-devel@lists.sourceforge.net])
17 AC_DEFINE([F2FS_TOOLS_VERSION], "f2fs_tools_version", [f2fs-tools version])
19 [\([0-9]*\)\(\w\|\W\)*], [\1]),
20 [Major version for f2fs-tools])
22 [\([0-9]*\).\([0-9]*\)\(\w\|\W\)*], [\2]),
23 [Minor version for f2fs-tools])
25 AS_IF([test -d .git],[
28 [\([0-9-]*\)\(\w\|\W\)*], [\1])",
29 [f2fs-tools date based on Git commits])],[
32 [f2fs-tools date based on Source releases])])
37 AC_CONFIG_AUX_DIR([build-aux])
38 AM_INIT_AUTOMAKE([-Wall -Werror foreign tar-pax dist-xz])
42 [AS_HELP_STRING([--without-selinux],
43 [Ignore presence of libselinux and disable selinux support])],
48 [AS_HELP_STRING([--without-blkid],
49 [Ignore presence of libblkid and disable blkid support])],
54 [AS_HELP_STRING([--without-lzo2],
55 [Ignore presence of liblzo2 and disable lzo2 support])],
60 [AS_HELP_STRING([--without-lz4],
61 [Ignore presence of liblz4 and disable lz4 support])],
76 [AC_SUBST([libblkid_LIBS], ["-lblkid"])
82 [--with-blkid was given, but test for blkid failed])
84 ], -lblkid)])
88 [AC_SUBST([liblzo2_LIBS], ["-llzo2"])
94 [--with-lzo2 was given, but test for lzo2 failed])
96 ], -llzo2)])
100 [AC_SUBST([liblz4_LIBS], ["-llz4"])
106 [--with-lz4 was given, but test for lz4 failed])
108 ], -llz4)])
112 [AC_SUBST([libselinux_LIBS], ["-lselinux"])
118 [--with-selinux was given, but test for selinux failed])
120 ], -lselinux)])
123 [AC_SUBST([libuuid_LIBS], ["-luuid"])
129 [AC_SUBST([libwinpthread_LIBS], ["-lwinpthread"])
246 AC_ARG_WITH([root-libdir],
247 [ --with-root-libdir=DIR override location for /lib/libf2fs.so],
262 tools/Makefile
263 tools/f2fs_io/Makefile
295 static inline unsigned int getuid(void) { return -1; }
298 static inline unsigned int getgid(void) { return -1; }