blob: 214d3f69703b874dcde93352a387a06114438d5a [file] [log] [blame]
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001AC_INIT(version.h)
Theodore Ts'o37cdbee2012-12-22 22:24:45 -05002AC_PREREQ(2.54)
Theodore Ts'ob0cacab2004-11-30 19:00:19 -05003AC_CONFIG_AUX_DIR(config)
Theodore Ts'od1154eb2011-09-18 17:34:37 -04004AC_CONFIG_HEADERS([lib/config.h])
5AH_BOTTOM([#include "dirpaths.h"])
Theodore Ts'o50e1e101997-04-26 13:58:21 +00006MCONFIG=./MCONFIG
7AC_SUBST_FILE(MCONFIG)
Theodore Ts'o74becf31997-04-26 14:37:06 +00008BINARY_TYPE=bin
9dnl
10dnl This is to figure out the version number and the date....
11dnl
12E2FSPROGS_VERSION=`grep E2FSPROGS_VERSION ${srcdir}/version.h \
13 | awk '{print $3}' | tr \" " " | awk '{print $1}'`
14DATE=`grep E2FSPROGS_DATE ${srcdir}/version.h | awk '{print $3}' \
15 | tr \" " "`
Theodore Ts'obff0cc92003-03-23 01:37:53 -050016E2FSPROGS_DAY=`echo $DATE | awk -F- '{print $1}'`
Theodore Ts'o74becf31997-04-26 14:37:06 +000017MONTH=`echo $DATE | awk -F- '{print $2}'`
18YEAR=`echo $DATE | awk -F- '{print $3}'`
19
Theodore Ts'o40fa8cc1999-01-09 05:06:02 +000020if expr $YEAR ">" 1900 > /dev/null ; then
21 E2FSPROGS_YEAR=$YEAR
22elif expr $YEAR ">" 90 >/dev/null ; then
Theodore Ts'o74becf31997-04-26 14:37:06 +000023 E2FSPROGS_YEAR=19$YEAR
24else
25 E2FSPROGS_YEAR=20$YEAR
26fi
27
28case $MONTH in
Andreas Dilger927566a2006-11-12 19:41:25 -050029Jan) MONTH_NUM=01; E2FSPROGS_MONTH="January" ;;
30Feb) MONTH_NUM=02; E2FSPROGS_MONTH="February" ;;
31Mar) MONTH_NUM=03; E2FSPROGS_MONTH="March" ;;
32Apr) MONTH_NUM=04; E2FSPROGS_MONTH="April" ;;
33May) MONTH_NUM=05; E2FSPROGS_MONTH="May" ;;
34Jun) MONTH_NUM=06; E2FSPROGS_MONTH="June" ;;
35Jul) MONTH_NUM=07; E2FSPROGS_MONTH="July" ;;
36Aug) MONTH_NUM=08; E2FSPROGS_MONTH="August" ;;
37Sep) MONTH_NUM=09; E2FSPROGS_MONTH="September" ;;
38Oct) MONTH_NUM=10; E2FSPROGS_MONTH="October" ;;
39Nov) MONTH_NUM=11; E2FSPROGS_MONTH="November" ;;
40Dec) MONTH_NUM=12; E2FSPROGS_MONTH="December" ;;
Theodore Ts'o02d04db2008-08-22 10:52:42 -040041*) AC_MSG_WARN([Unknown month $MONTH??]) ;;
Theodore Ts'o74becf31997-04-26 14:37:06 +000042esac
43
Andreas Dilger927566a2006-11-12 19:41:25 -050044base_ver=`echo $E2FSPROGS_VERSION | \
45 sed -e 's/-WIP//' -e 's/pre-//' -e 's/-PLUS//'`
Andreas Dilger927566a2006-11-12 19:41:25 -050046
47date_spec=${E2FSPROGS_YEAR}.${MONTH_NUM}.${E2FSPROGS_DAY}
48
49case $E2FSPROGS_VERSION in
50*-WIP|pre-*)
Theodore Ts'oab063962008-07-07 16:07:43 -040051 E2FSPROGS_PKGVER="$base_ver~WIP-$E2FSPROGS_YEAR-$MONTH_NUM-$E2FSPROGS_DAY"
Andreas Dilger927566a2006-11-12 19:41:25 -050052 ;;
53*)
54 E2FSPROGS_PKGVER="$base_ver"
55 ;;
56esac
57
58unset DATE MONTH YEAR base_ver pre_vers date_spec
Theodore Ts'o02d04db2008-08-22 10:52:42 -040059AC_MSG_RESULT([Generating configuration file for e2fsprogs version $E2FSPROGS_VERSION])
60AC_MSG_RESULT([Release date is ${E2FSPROGS_MONTH}, ${E2FSPROGS_YEAR}])
Theodore Ts'o74becf31997-04-26 14:37:06 +000061AC_SUBST(E2FSPROGS_YEAR)
62AC_SUBST(E2FSPROGS_MONTH)
Theodore Ts'obff0cc92003-03-23 01:37:53 -050063AC_SUBST(E2FSPROGS_DAY)
Theodore Ts'o74becf31997-04-26 14:37:06 +000064AC_SUBST(E2FSPROGS_VERSION)
Andreas Dilger927566a2006-11-12 19:41:25 -050065AC_SUBST(E2FSPROGS_PKGVER)
Theodore Ts'oea97be52001-09-19 15:20:12 -040066AC_CANONICAL_HOST
Theodore Ts'o74becf31997-04-26 14:37:06 +000067dnl
Theodore Ts'o57aa50d2009-11-26 10:38:04 -050068dnl Check to see if libdl exists for the sake of dlopen
69dnl
70DLOPEN_LIB=''
71AC_CHECK_LIB(dl, dlopen,
72[DLOPEN_LIB=-ldl
Theodore Ts'od1154eb2011-09-18 17:34:37 -040073AC_DEFINE(HAVE_DLOPEN, 1, [Define to 1 if dlopen/libdl exists])])
Theodore Ts'o57aa50d2009-11-26 10:38:04 -050074AC_SUBST(DLOPEN_LIB)
75dnl
Theodore Ts'od21ae6c2003-05-05 09:00:24 -040076dnl Use diet libc
77dnl
Theodore Ts'oeafba6c2008-07-10 10:21:42 -040078WITH_DIET_LIBC=
Theodore Ts'od21ae6c2003-05-05 09:00:24 -040079AC_ARG_WITH([diet-libc],
Theodore Ts'o32493942007-12-31 10:45:01 -050080[ --with-diet-libc use diet libc],
Theodore Ts'od21ae6c2003-05-05 09:00:24 -040081CC="diet cc -nostdinc"
Theodore Ts'oeafba6c2008-07-10 10:21:42 -040082WITH_DIET_LIBC=yes
Theodore Ts'od21ae6c2003-05-05 09:00:24 -040083AC_MSG_RESULT(CC=$CC))dnl
84dnl
Theodore Ts'o74becf31997-04-26 14:37:06 +000085AC_ARG_WITH([cc],
Theodore Ts'o0b5b9f92009-09-06 21:28:47 -040086AC_HELP_STRING([--with-cc],[no longer supported, use CC= instead]),
87AC_MSG_ERROR([--with-cc no longer supported; use CC= instead]))
Theodore Ts'o74becf31997-04-26 14:37:06 +000088dnl
89AC_ARG_WITH([ccopts],
Theodore Ts'o0b5b9f92009-09-06 21:28:47 -040090AC_HELP_STRING([--with-ccopts],[no longer supported, use CFLAGS= instead]),
91AC_MSG_ERROR([--with-ccopts no longer supported; use CFLAGS= instead]))
92dnl
93AC_ARG_WITH([ldopts],
94AC_HELP_STRING([--with-ldopts],[no longer supported, use LDFLAGS= instead]),
95AC_MSG_ERROR([--with-ldopts no longer supported; use LDFLAGS= instead]))
96dnl
97AC_PROG_CC
Theodore Ts'o9b3018a2011-08-11 14:56:49 -040098if test "$GCC" = yes; then
99 RDYNAMIC="-rdynamic"
100 AC_SUBST(RDYNAMIC)
101fi
Theodore Ts'o0b5b9f92009-09-06 21:28:47 -0400102AC_PROG_CPP
Theodore Ts'o74becf31997-04-26 14:37:06 +0000103dnl
Matthias Andreeb1c92f92004-02-23 21:30:11 +0100104dnl Alpha computers use fast and imprecise floating point code that may
105dnl miss exceptions by default. Force sane options if we're using GCC.
106AC_MSG_CHECKING(for additional special compiler flags)
107if test "$GCC" = yes
108then
109 case "$host_cpu" in
110 alpha) addcflags="-mieee" ;;
111 esac
112fi
113if test "x$addcflags" != x
114then
115 AC_MSG_RESULT($addcflags)
116 CFLAGS="$addcflags $CFLAGS"
117else
118 AC_MSG_RESULT([[(none)]])
119fi
120dnl
Theodore Ts'oa4d09611997-04-29 14:28:00 +0000121dnl Set default values for library extentions. Will be dealt with after
122dnl parsing configuration opions, which may modify these
123dnl
124LIB_EXT=.a
125STATIC_LIB_EXT=.a
Theodore Ts'o14b596d2009-04-22 09:18:30 -0400126PROFILED_LIB_EXT=.a
Theodore Ts'oa4d09611997-04-29 14:28:00 +0000127dnl
Theodore Ts'oa4b2d3c1998-04-03 16:12:25 +0000128dnl Allow separate `root_prefix' to be specified
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000129dnl
Theodore Ts'oa4b2d3c1998-04-03 16:12:25 +0000130AC_ARG_WITH([root-prefix],
131[ --with-root-prefix=PREFIX override prefix variable for files to be placed in the root],
132root_prefix=$withval,
133root_prefix=NONE)dnl
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000134dnl
Theodore Ts'o98919bd2005-02-04 10:43:58 -0500135dnl handle --enable-maintainer-mode
136dnl
137AC_ARG_ENABLE([maintainer-mode],
138[ --enable-maintainer-mode enable makefile rules useful for maintainers],
139if test "$enableval" = "no"
140then
141 MAINTAINER_CMT=#
Theodore Ts'o02d04db2008-08-22 10:52:42 -0400142 AC_MSG_RESULT([Disabling maintainer mode])
Theodore Ts'o98919bd2005-02-04 10:43:58 -0500143else
144 MAINTAINER_CMT=
Theodore Ts'o02d04db2008-08-22 10:52:42 -0400145 AC_MSG_RESULT([Enabling maintainer mode])
Theodore Ts'o98919bd2005-02-04 10:43:58 -0500146fi
147,
148MAINTAINER_CMT=#
Theodore Ts'o02d04db2008-08-22 10:52:42 -0400149AC_MSG_RESULT([Disabling maintainer mode by default])
Theodore Ts'o98919bd2005-02-04 10:43:58 -0500150)
151AC_SUBST(MAINTAINER_CMT)
152dnl
Theodore Ts'o5aa6c3f2010-05-17 19:21:42 -0400153dnl handle --enable-symlink-install
154dnl
155AC_ARG_ENABLE([symlink-install],
156[ --enable-symlink-install use symlinks when installing instead of hard links],
157if test "$enableval" = "no"
158then
159 LINK_INSTALL_FLAGS=-f
160 AC_MSG_RESULT([Disabling symlinks for install])
161else
162 LINK_INSTALL_FLAGS=-sf
163 AC_MSG_RESULT([Enabling symlinks for install])
164fi
165,
166LINK_INSTALL_FLAGS=-f
Theodore Ts'o183c73b2012-05-12 23:13:24 -0400167AC_MSG_RESULT([Disabling symlinks for install by default])
Theodore Ts'o5aa6c3f2010-05-17 19:21:42 -0400168)
169AC_SUBST(LINK_INSTALL_FLAGS)
170dnl
Theodore Ts'o183c73b2012-05-12 23:13:24 -0400171dnl handle --enable-relative-symlinks
172dnl
Theodore Ts'o91d11da2012-09-06 23:01:14 -0400173relative_symlink_defined=
174AC_ARG_ENABLE([relative-symlinks],
Theodore Ts'o183c73b2012-05-12 23:13:24 -0400175[ --enable-relative-symlinks use relative symlinks when installing],
176if test "$enableval" = "no"
177then
178 SYMLINK_RELATIVE=
Theodore Ts'o91d11da2012-09-06 23:01:14 -0400179 relative_symlink_defined=yes
Theodore Ts'o183c73b2012-05-12 23:13:24 -0400180 AC_MSG_RESULT([Disabling relative symlinks for install])
181else
182 SYMLINK_RELATIVE=--relative
Theodore Ts'o91d11da2012-09-06 23:01:14 -0400183 relative_symlink_defined=yes
184 AC_MSG_RESULT([Enabling relative symlinks for install])
185fi)
186AC_ARG_ENABLE([symlink-relative-symlinks],,
187if test "$enableval" = "no"
188then
189 SYMLINK_RELATIVE=yes
190 AC_MSG_RESULT([Disabling relative symlinks for install])
191else
192 SYMLINK_RELATIVE=--relative
193 AC_MSG_RESULT([Enabling relative symlinks for install])
Theodore Ts'o183c73b2012-05-12 23:13:24 -0400194fi
195,
Theodore Ts'o91d11da2012-09-06 23:01:14 -0400196if test -z "$relative_symlink_defined"
197then
Theodore Ts'o183c73b2012-05-12 23:13:24 -0400198 SYMLINK_RELATIVE=
199AC_MSG_RESULT([Disabling relative symlinks for install by default])
Theodore Ts'o91d11da2012-09-06 23:01:14 -0400200fi
Theodore Ts'o183c73b2012-05-12 23:13:24 -0400201)
202AC_SUBST(SYMLINK_RELATIVE)
203dnl
Theodore Ts'o5aa6c3f2010-05-17 19:21:42 -0400204dnl handle --enable-symlink-build
205dnl
206AC_ARG_ENABLE([symlink-build],
207[ --enable-symlink-build use symlinks while building instead of hard links],
208if test "$enableval" = "no"
209then
210 LINK_BUILD_FLAGS=
211 AC_MSG_RESULT([Disabling symlinks for build])
212else
213 LINK_BUILD_FLAGS=-s
214 AC_MSG_RESULT([Enabling symlinks for build])
215fi
216,
217LINK_BUILD_FLAGS=
Theodore Ts'o183c73b2012-05-12 23:13:24 -0400218AC_MSG_RESULT([Disabling symlinks for build by default])
Theodore Ts'o5aa6c3f2010-05-17 19:21:42 -0400219)
220AC_SUBST(LINK_BUILD_FLAGS)
221dnl
Theodore Ts'oc13351f2009-07-02 00:11:17 -0400222dnl handle --enable-verbose-makecmds
223dnl
224AC_ARG_ENABLE([verbose-makecmds],
Theodore Ts'o5aa6c3f2010-05-17 19:21:42 -0400225[ --enable-verbose-makecmds enable verbose make command output],
Theodore Ts'oc13351f2009-07-02 00:11:17 -0400226if test "$enableval" = "no"
227then
228 AC_MSG_RESULT([Disabling verbose make commands])
229 E=@echo
Theodore Ts'oc1986ec2012-06-13 15:29:13 -0400230 ES=echo
Theodore Ts'oc13351f2009-07-02 00:11:17 -0400231 Q=@
232else
233 AC_MSG_RESULT([Enabling verbose make commands])
234 E=@\\#
Theodore Ts'oc1986ec2012-06-13 15:29:13 -0400235 ES=\\#
Theodore Ts'oc13351f2009-07-02 00:11:17 -0400236 Q=
237fi
238,
239AC_MSG_RESULT([Disabling verbose make commands])
240E=@echo
Theodore Ts'oc1986ec2012-06-13 15:29:13 -0400241ES=echo
Theodore Ts'oc13351f2009-07-02 00:11:17 -0400242Q=@
243)
244AC_SUBST(E)
Theodore Ts'oc1986ec2012-06-13 15:29:13 -0400245AC_SUBST(ES)
Theodore Ts'oc13351f2009-07-02 00:11:17 -0400246AC_SUBST(Q)
247dnl
Theodore Ts'o19178752000-02-11 15:55:07 +0000248dnl handle --enable-compression
249dnl
250AC_ARG_ENABLE([compression],
251[ --enable-compression enable EXPERIMENTAL compression support],
252if test "$enableval" = "no"
253then
Theodore Ts'o02d04db2008-08-22 10:52:42 -0400254 AC_MSG_RESULT([Disabling compression support])
Theodore Ts'o19178752000-02-11 15:55:07 +0000255else
Theodore Ts'od1154eb2011-09-18 17:34:37 -0400256 AC_DEFINE(ENABLE_COMPRESSION, 1,
257 [Define to 1 if ext2 compression enabled])
Theodore Ts'o02d04db2008-08-22 10:52:42 -0400258 AC_MSG_RESULT([Enabling compression support])
259 AC_MSG_WARN([Compression support is experimental])
Theodore Ts'o19178752000-02-11 15:55:07 +0000260fi
261,
Theodore Ts'o02d04db2008-08-22 10:52:42 -0400262AC_MSG_RESULT([Disabling compression support by default])
Theodore Ts'o19178752000-02-11 15:55:07 +0000263)
264dnl
Theodore Ts'o8fdc9982002-06-25 23:26:34 -0400265dnl handle --enable-htree
266dnl
Theodore Ts'od1154eb2011-09-18 17:34:37 -0400267AH_TEMPLATE([ENABLE_HTREE], [Define to 1 if ext3/4 htree support enabled])
Theodore Ts'o8fdc9982002-06-25 23:26:34 -0400268AC_ARG_ENABLE([htree],
269[ --enable-htree enable EXPERIMENTAL htree directory support],
270if test "$enableval" = "no"
271then
272 HTREE_CMT=#
Theodore Ts'o02d04db2008-08-22 10:52:42 -0400273 AC_MSG_RESULT([Disabling htree directory support])
Theodore Ts'o8fdc9982002-06-25 23:26:34 -0400274else
275 HTREE_CMT=
Theodore Ts'od1154eb2011-09-18 17:34:37 -0400276 AC_DEFINE(ENABLE_HTREE, 1)
Theodore Ts'o02d04db2008-08-22 10:52:42 -0400277 AC_MSG_RESULT([Enabling htree directory support])
Theodore Ts'o8fdc9982002-06-25 23:26:34 -0400278fi
279,
Theodore Ts'o559ca6c2002-08-18 03:48:55 -0400280HTREE_CMT=
Theodore Ts'od1154eb2011-09-18 17:34:37 -0400281AC_DEFINE(ENABLE_HTREE, 1)
Theodore Ts'o02d04db2008-08-22 10:52:42 -0400282AC_MSG_RESULT([Enabling htree directory support by default])
Theodore Ts'o8fdc9982002-06-25 23:26:34 -0400283)
284AC_SUBST(HTREE_CMT)
285dnl
Theodore Ts'oa4ece352008-01-01 20:05:04 -0500286dnl This needs to be before all of the --enable-*-shlibs options
287dnl
288E2_PKG_CONFIG_STATIC=--static
Theodore Ts'o55da9872008-09-02 23:12:38 -0400289LDFLAG_DYNAMIC=
290PRIVATE_LIBS_CMT=
Theodore Ts'oa4ece352008-01-01 20:05:04 -0500291dnl
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000292dnl handle --enable-elf-shlibs
293dnl
294AC_ARG_ENABLE([elf-shlibs],
Theodore Ts'oa4d09611997-04-29 14:28:00 +0000295[ --enable-elf-shlibs select ELF shared libraries],
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000296if test "$enableval" = "no"
297then
298 ELF_CMT=#
299 MAKEFILE_ELF=/dev/null
Theodore Ts'o02d04db2008-08-22 10:52:42 -0400300 AC_MSG_RESULT([Disabling ELF shared libraries])
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000301else
Theodore Ts'oa4ece352008-01-01 20:05:04 -0500302 E2_PKG_CONFIG_STATIC=
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000303 ELF_CMT=
304 MAKEFILE_ELF=$srcdir/lib/Makefile.elf-lib
Theodore Ts'of5955dd2000-10-25 02:38:39 +0000305 [case "$host_os" in
306 solaris2.*)
307 MAKEFILE_ELF=$srcdir/lib/Makefile.solaris-lib
308 ;;
309 esac]
Theodore Ts'o74becf31997-04-26 14:37:06 +0000310 BINARY_TYPE=elfbin
Theodore Ts'oa4d09611997-04-29 14:28:00 +0000311 LIB_EXT=.so
Theodore Ts'o55da9872008-09-02 23:12:38 -0400312 PRIVATE_LIBS_CMT=#
313 LDFLAG_DYNAMIC=['-Wl,-rpath-link,$(top_builddir)/lib']
Theodore Ts'o02d04db2008-08-22 10:52:42 -0400314 AC_MSG_RESULT([Enabling ELF shared libraries])
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000315fi
316,
317MAKEFILE_ELF=/dev/null
318ELF_CMT=#
Theodore Ts'o02d04db2008-08-22 10:52:42 -0400319AC_MSG_RESULT([Disabling ELF shared libraries by default])
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000320)
321AC_SUBST(ELF_CMT)
322AC_SUBST_FILE(MAKEFILE_ELF)
323dnl
324dnl handle --enable-bsd-shlibs
325dnl
326AC_ARG_ENABLE([bsd-shlibs],
Theodore Ts'oa4d09611997-04-29 14:28:00 +0000327[ --enable-bsd-shlibs select BSD shared libraries],
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000328if test "$enableval" = "no"
329then
330 BSDLIB_CMT=#
331 MAKEFILE_BSDLIB=/dev/null
Theodore Ts'o02d04db2008-08-22 10:52:42 -0400332 AC_MSG_RESULT([Disabling BSD shared libraries])
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000333else
Theodore Ts'oa4ece352008-01-01 20:05:04 -0500334 E2_PKG_CONFIG_STATIC=
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000335 BSDLIB_CMT=
336 MAKEFILE_BSDLIB=$srcdir/lib/Makefile.bsd-lib
Theodore Ts'oa4d09611997-04-29 14:28:00 +0000337 LIB_EXT=.so
Theodore Ts'oe71d8732003-03-14 02:13:48 -0500338 [case "$host_os" in
Theodore Ts'oaa75ecc2003-03-17 10:01:22 -0500339 darwin*)
Theodore Ts'oe71d8732003-03-14 02:13:48 -0500340 MAKEFILE_BSDLIB=$srcdir/lib/Makefile.darwin-lib
341 LIB_EXT=.dylib
342 ;;
343 esac]
Theodore Ts'o02d04db2008-08-22 10:52:42 -0400344 AC_MSG_RESULT([Enabling BSD shared libraries])
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000345fi
346,
347MAKEFILE_BSDLIB=/dev/null
348BSDLIB_CMT=#
Theodore Ts'o02d04db2008-08-22 10:52:42 -0400349AC_MSG_RESULT([Disabling BSD shared libraries by default])
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000350)
351AC_SUBST(BSDLIB_CMT)
352AC_SUBST_FILE(MAKEFILE_BSDLIB)
353dnl
354dnl handle --enable-profile
355dnl
356AC_ARG_ENABLE([profile],
Theodore Ts'oa4d09611997-04-29 14:28:00 +0000357[ --enable-profile build profiling libraries],
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000358if test "$enableval" = "no"
359then
360 PROFILE_CMT=#
361 MAKEFILE_PROFILE=/dev/null
Theodore Ts'o02d04db2008-08-22 10:52:42 -0400362 AC_MSG_RESULT([Disabling profiling libraries])
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000363else
364 PROFILE_CMT=
365 MAKEFILE_PROFILE=$srcdir/lib/Makefile.profile
Theodore Ts'oa4d09611997-04-29 14:28:00 +0000366 PROFILED_LIB_EXT=_p.a
Theodore Ts'o02d04db2008-08-22 10:52:42 -0400367 AC_MSG_RESULT([Building profiling libraries])
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000368fi
369,
370PROFILE_CMT=#
371MAKEFILE_PROFILE=/dev/null
Theodore Ts'o02d04db2008-08-22 10:52:42 -0400372AC_MSG_RESULT([Disabling profiling libraries by default])
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000373)
374AC_SUBST(PROFILE_CMT)
375AC_SUBST_FILE(MAKEFILE_PROFILE)
376dnl
377dnl handle --enable-checker
378dnl
379AC_ARG_ENABLE([checker],
Theodore Ts'oa4d09611997-04-29 14:28:00 +0000380[ --enable-checker build checker libraries],
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000381if test "$enableval" = "no"
382then
383 CHECKER_CMT=#
384 MAKEFILE_CHECKER=/dev/null
Theodore Ts'o02d04db2008-08-22 10:52:42 -0400385 AC_MSG_RESULT([Disabling checker libraries])
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000386else
387 CHECKER_CMT=
388 MAKEFILE_CHECKER=$srcdir/lib/Makefile.checker
Theodore Ts'o02d04db2008-08-22 10:52:42 -0400389 AC_MSG_RESULT([Building checker libraries])
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000390fi
391,
392CHECKER_CMT=#
393MAKEFILE_CHECKER=/dev/null
Theodore Ts'o02d04db2008-08-22 10:52:42 -0400394AC_MSG_RESULT([Disabling checker libraries by default])
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000395)
396AC_SUBST(CHECKER_CMT)
397AC_SUBST_FILE(MAKEFILE_CHECKER)
398dnl
Theodore Ts'oa4d09611997-04-29 14:28:00 +0000399dnl Substitute library extensions
400dnl
401AC_SUBST(LIB_EXT)
402AC_SUBST(STATIC_LIB_EXT)
403AC_SUBST(PROFILED_LIB_EXT)
Theodore Ts'o55da9872008-09-02 23:12:38 -0400404AC_SUBST(LDFLAG_DYNAMIC)
405AC_SUBST(PRIVATE_LIBS_CMT)
Theodore Ts'oa4d09611997-04-29 14:28:00 +0000406dnl
Theodore Ts'o782bebf2002-11-08 18:46:45 -0500407dnl handle --enable-jbd-debug
Theodore Ts'ocdf186e2001-06-13 22:16:47 +0000408dnl
Theodore Ts'o782bebf2002-11-08 18:46:45 -0500409AC_ARG_ENABLE([jbd-debug],
410[ --enable-jbd-debug enable journal debugging],
Theodore Ts'ocdf186e2001-06-13 22:16:47 +0000411if test "$enableval" = "no"
412then
Theodore Ts'o02d04db2008-08-22 10:52:42 -0400413 AC_MSG_RESULT([Disabling journal debugging])
Theodore Ts'ocdf186e2001-06-13 22:16:47 +0000414else
Theodore Ts'od1154eb2011-09-18 17:34:37 -0400415 AC_DEFINE(CONFIG_JBD_DEBUG, 1,
416 [Define to 1 if debugging ext3/4 journal code])
Theodore Ts'o02d04db2008-08-22 10:52:42 -0400417 AC_MSG_RESULT([Enabling journal debugging])
Theodore Ts'ocdf186e2001-06-13 22:16:47 +0000418fi
419,
Theodore Ts'o02d04db2008-08-22 10:52:42 -0400420AC_MSG_RESULT([Disabling journal debugging by default])
Theodore Ts'ocdf186e2001-06-13 22:16:47 +0000421)
422dnl
Theodore Ts'of0a22d02003-02-22 13:19:53 -0500423dnl handle --enable-blkid-debug
424dnl
425AC_ARG_ENABLE([blkid-debug],
Theodore Ts'od21ae6c2003-05-05 09:00:24 -0400426[ --enable-blkid-debug enable blkid debugging],
Theodore Ts'of0a22d02003-02-22 13:19:53 -0500427if test "$enableval" = "no"
428then
Theodore Ts'o02d04db2008-08-22 10:52:42 -0400429 AC_MSG_RESULT([Disabling blkid debugging])
Theodore Ts'of0a22d02003-02-22 13:19:53 -0500430else
Theodore Ts'od1154eb2011-09-18 17:34:37 -0400431 AC_DEFINE(CONFIG_BLKID_DEBUG, 1,
432 [Define to 1 if debugging the blkid library])
Theodore Ts'o02d04db2008-08-22 10:52:42 -0400433 AC_MSG_RESULT([Enabling blkid debugging])
Theodore Ts'of0a22d02003-02-22 13:19:53 -0500434fi
435,
Theodore Ts'o02d04db2008-08-22 10:52:42 -0400436AC_MSG_RESULT([Disabling blkid debugging by default])
Theodore Ts'of0a22d02003-02-22 13:19:53 -0500437)
438dnl
Theodore Ts'o2a29f132003-05-05 12:08:47 -0400439dnl handle --enable-testio-debug
440dnl
441AC_ARG_ENABLE([testio-debug],
Theodore Ts'oaf773652008-09-01 11:27:27 -0400442[ --disable-testio-debug disable the use of the test I/O manager for debugging],
Theodore Ts'od1154eb2011-09-18 17:34:37 -0400443AH_TEMPLATE([CONFIG_TESTIO_DEBUG],
444 [Define to 1 if the testio I/O manager should be enabled])
Theodore Ts'o2a29f132003-05-05 12:08:47 -0400445if test "$enableval" = "no"
446then
Theodore Ts'o02d04db2008-08-22 10:52:42 -0400447 AC_MSG_RESULT([Disabling testio debugging])
Theodore Ts'oaf773652008-09-01 11:27:27 -0400448 TEST_IO_CMT="#"
Theodore Ts'o2a29f132003-05-05 12:08:47 -0400449else
Theodore Ts'oaf773652008-09-01 11:27:27 -0400450 TEST_IO_CMT=
Theodore Ts'od1154eb2011-09-18 17:34:37 -0400451 AC_DEFINE(CONFIG_TESTIO_DEBUG, 1)
Theodore Ts'o02d04db2008-08-22 10:52:42 -0400452 AC_MSG_RESULT([Enabling testio debugging])
Theodore Ts'o2a29f132003-05-05 12:08:47 -0400453fi
454,
Theodore Ts'oaf773652008-09-01 11:27:27 -0400455AC_MSG_RESULT([Enabling testio debugging by default])
Theodore Ts'od1154eb2011-09-18 17:34:37 -0400456AC_DEFINE(CONFIG_TESTIO_DEBUG, 1)
Theodore Ts'oaf773652008-09-01 11:27:27 -0400457TEST_IO_CMT=
Theodore Ts'o2a29f132003-05-05 12:08:47 -0400458)
Theodore Ts'oaf773652008-09-01 11:27:27 -0400459AC_SUBST(TEST_IO_CMT)
Theodore Ts'o2a29f132003-05-05 12:08:47 -0400460dnl
Scott James Remnant39fd3d42009-05-14 13:03:25 +0100461dnl handle --disable-libuuid
462dnl
463PKG_PROG_PKG_CONFIG
464LIBUUID=
465DEPLIBUUID=
466STATIC_LIBUUID=
467DEPSTATIC_LIBUUID=
468PROFILED_LIBUUID=
469DEPPROFILED_LIBUUID=
470UUID_CMT=
471AC_ARG_ENABLE([libuuid],
472[ --disable-libuuid do not build private uuid library],
473if test "$enableval" = "no"
474then
475 if test -z "$PKG_CONFIG"; then
476 AC_MSG_ERROR([pkg-config not installed; please install it.])
477 fi
478
479 AC_CHECK_LIB(uuid, uuid_generate,
480 [LIBUUID=`$PKG_CONFIG --libs uuid`;
481 STATIC_LIBUUID=`$PKG_CONFIG --static --libs uuid`],
482 [AC_MSG_ERROR([external uuid library not found])],
483 [$LIBUUID])
484 UUID_CMT=#
485 AC_MSG_RESULT([Disabling private uuid library])
486else
487 LIBUUID='$(LIB)/libuuid'$LIB_EXT
488 DEPLIBUUID=$LIBUUID
489 STATIC_LIBUUID='$(LIB)/libuuid'$STATIC_LIB_EXT
490 DEPSTATIC_LIBUUID=$STATIC_LIBUUID
491 PROFILED_LIBUUID='$(LIB)/libuuid'$PROFILED_LIB_EXT
492 DEPPROFILED_LIBUUID=$PROFILED_LIBUUID
493 AC_MSG_RESULT([Enabling private uuid library])
494fi
495,
496LIBUUID='$(LIB)/libuuid'$LIB_EXT
497DEPLIBUUID=$LIBUUID
498STATIC_LIBUUID='$(LIB)/libuuid'$STATIC_LIB_EXT
499DEPSTATIC_LIBUUID=$STATIC_LIBUUID
500PROFILED_LIBUUID='$(LIB)/libuuid'$PROFILED_LIB_EXT
501DEPPROFILED_LIBUUID=$PROFILED_LIBUUID
502AC_MSG_RESULT([Enabling private uuid library by default])
503)
504AC_SUBST(LIBUUID)
505AC_SUBST(DEPLIBUUID)
506AC_SUBST(STATIC_LIBUUID)
507AC_SUBST(DEPSTATIC_LIBUUID)
508AC_SUBST(PROFILED_LIBUUID)
509AC_SUBST(DEPPROFILED_LIBUUID)
510AC_SUBST(UUID_CMT)
511dnl
Theodore Ts'o14b596d2009-04-22 09:18:30 -0400512dnl handle --disable-libblkid
513dnl
514PKG_PROG_PKG_CONFIG
515LIBBLKID=
516DEPLIBBLKID=
517STATIC_LIBBLKID=
518DEPSTATIC_LIBBLKID=
519PROFILED_LIBBLKID=
520DEPPROFILED_LIBBLKID=
521BLKID_CMT=
Theodore Ts'od1154eb2011-09-18 17:34:37 -0400522AH_TEMPLATE([CONFIG_BUILD_FINDFS], [Define to 1 to compile findfs])
Theodore Ts'o14b596d2009-04-22 09:18:30 -0400523AC_ARG_ENABLE([libblkid],
524[ --disable-libblkid do not build private blkid library],
525if test "$enableval" = "no"
526then
527 if test -z "$PKG_CONFIG"; then
528 AC_MSG_ERROR([pkg-config not installed; please install it.])
529 fi
530
531 AC_CHECK_LIB(blkid, blkid_get_cache,
532 [LIBBLKID=`$PKG_CONFIG --libs blkid`;
533 STATIC_LIBBLKID=`$PKG_CONFIG --static --libs blkid`],
534 [AC_MSG_ERROR([external blkid library not found])],
535 [$LIBBLKID])
536 BLKID_CMT=#
537 AC_MSG_RESULT([Disabling private blkid library])
538else
539 LIBBLKID='$(LIB)/libblkid'$LIB_EXT
540 DEPLIBBLKID=$LIBBLKID
541 STATIC_LIBBLKID='$(LIB)/libblkid'$STATIC_LIB_EXT
542 DEPSTATIC_LIBBLKID=$STATIC_LIBBLKID
543 PROFILED_LIBBLKID='$(LIB)/libblkid'$PROFILED_LIB_EXT
544 DEPPROFILED_LIBBLKID=$PROFILED_LIBBLKID
Theodore Ts'od1154eb2011-09-18 17:34:37 -0400545 AC_DEFINE(CONFIG_BUILD_FINDFS, 1)
Theodore Ts'o14b596d2009-04-22 09:18:30 -0400546 AC_MSG_RESULT([Enabling private blkid library])
547fi
548,
549LIBBLKID='$(LIB)/libblkid'$LIB_EXT
550DEPLIBBLKID=$LIBBLKID
551STATIC_LIBBLKID='$(LIB)/libblkid'$STATIC_LIB_EXT
552DEPSTATIC_LIBBLKID=$STATIC_LIBBLKID
553PROFILED_LIBBLKID='$(LIB)/libblkid'$PROFILED_LIB_EXT
554DEPPROFILED_LIBBLKID=$PROFILED_LIBBLKID
Theodore Ts'od1154eb2011-09-18 17:34:37 -0400555AC_DEFINE(CONFIG_BUILD_FINDFS, 1)
Theodore Ts'o14b596d2009-04-22 09:18:30 -0400556AC_MSG_RESULT([Enabling private blkid library by default])
557)
558AC_SUBST(LIBBLKID)
559AC_SUBST(DEPLIBBLKID)
560AC_SUBST(STATIC_LIBBLKID)
561AC_SUBST(DEPSTATIC_LIBBLKID)
562AC_SUBST(PROFILED_LIBBLKID)
563AC_SUBST(DEPPROFILED_LIBBLKID)
564AC_SUBST(BLKID_CMT)
565dnl
Theodore Ts'o7becb202011-11-14 10:40:43 -0500566dnl handle --enable-quota
Aditya Kalif239fef2011-07-20 11:40:02 -0700567dnl
Eric Sandeenf5589f42013-10-14 08:54:15 -0400568QUOTA_MAN_COMMENT='.\"'
Niu Yawei43075b42013-10-14 09:49:27 -0400569QUOTA_CMT=
Eric Sandeenf5589f42013-10-14 08:54:15 -0400570AC_SUBST(QUOTA_MAN_COMMENT)
Aditya Kalif239fef2011-07-20 11:40:02 -0700571PKG_PROG_PKG_CONFIG
Theodore Ts'o7becb202011-11-14 10:40:43 -0500572AH_TEMPLATE([CONFIG_QUOTA], [Define to 1 to enable quota support])
573AC_ARG_ENABLE([quota],
Eric Sandeen7b8912e2012-11-27 12:21:56 -0600574[ --enable-quota enable quota support],
Aditya Kalif239fef2011-07-20 11:40:02 -0700575if test "$enableval" = "no"
576then
Niu Yawei43075b42013-10-14 09:49:27 -0400577 QUOTA_CMT=#
Theodore Ts'o7becb202011-11-14 10:40:43 -0500578 AC_MSG_RESULT([Disabling quota support])
Aditya Kalif239fef2011-07-20 11:40:02 -0700579else
Niu Yawei43075b42013-10-14 09:49:27 -0400580 QUOTA_CMT=
Theodore Ts'o7becb202011-11-14 10:40:43 -0500581 AC_DEFINE(CONFIG_QUOTA, 1)
582 AC_MSG_RESULT([Enabling quota support])
Eric Sandeenf5589f42013-10-14 08:54:15 -0400583 QUOTA_MAN_COMMENT=""
584 AC_SUBST(QUOTA_MAN_COMMENT)
Aditya Kalif239fef2011-07-20 11:40:02 -0700585fi
586,
Niu Yawei43075b42013-10-14 09:49:27 -0400587QUOTA_CMT=#
Theodore Ts'o7becb202011-11-14 10:40:43 -0500588AC_MSG_RESULT([Disabling quota support by default])
589)
590dnl
591dnl Define stuff expected for quota library
592dnl
Aditya Kalif239fef2011-07-20 11:40:02 -0700593LIBQUOTA='$(LIB)/libquota'$LIB_EXT
594DEPLIBQUOTA=$LIBQUOTA
595STATIC_LIBQUOTA='$(LIB)/libquota'$STATIC_LIB_EXT
596DEPSTATIC_LIBQUOTA=$STATIC_LIBQUOTA
597PROFILED_LIBQUOTA='$(LIB)/libquota'$PROFILED_LIB_EXT
598DEPPROFILED_LIBQUOTA=$PROFILED_LIBQUOTA
Aditya Kalif239fef2011-07-20 11:40:02 -0700599AC_SUBST(LIBQUOTA)
600AC_SUBST(DEPLIBQUOTA)
601AC_SUBST(STATIC_LIBQUOTA)
602AC_SUBST(DEPSTATIC_LIBQUOTA)
603AC_SUBST(PROFILED_LIBQUOTA)
604AC_SUBST(DEPPROFILED_LIBQUOTA)
605AC_SUBST(QUOTA_CMT)
606dnl
Theodore Ts'o3df60142013-06-16 16:14:40 -0400607dnl handle --disable-backtrace
608dnl
609AH_TEMPLATE([DISABLE_BACKTRACE], [Define to 1 to disable use of backtrace])
610AC_ARG_ENABLE([backtrace],
611[ --disable-backtrace disable use backtrace],
612if test "$enableval" = "no"
613then
614 AC_MSG_RESULT([Disabling use of backtrace])
615 AC_DEFINE(DISABLE_BACKTRACE, 1)
616else
617 AC_MSG_RESULT([Enabling use of backtrace])
618fi
619,
620AC_MSG_RESULT([Enabling use of backtrace by default])
621)
622dnl
Theodore Ts'ocdf186e2001-06-13 22:16:47 +0000623dnl handle --enable-debugfs
624dnl
625AC_ARG_ENABLE([debugfs],
626[ --disable-debugfs disable support of debugfs program],
627if test "$enableval" = "no"
628then
Theodore Ts'o02d04db2008-08-22 10:52:42 -0400629 AC_MSG_RESULT([Disabling debugfs support])
Theodore Ts'ocdf186e2001-06-13 22:16:47 +0000630 DEBUGFS_CMT="#"
631else
632 DEBUGFS_CMT=
Theodore Ts'o02d04db2008-08-22 10:52:42 -0400633 AC_MSG_RESULT([Enabling debugfs support])
Theodore Ts'ocdf186e2001-06-13 22:16:47 +0000634fi
635,
Theodore Ts'o02d04db2008-08-22 10:52:42 -0400636AC_MSG_RESULT([Enabling debugfs support by default])
Theodore Ts'ocdf186e2001-06-13 22:16:47 +0000637DEBUGFS_CMT=
638)
639AC_SUBST(DEBUGFS_CMT)
640dnl
641dnl handle --enable-imager
642dnl
643AC_ARG_ENABLE([imager],
644[ --disable-imager disable support of e2image program],
645if test "$enableval" = "no"
646then
Theodore Ts'o02d04db2008-08-22 10:52:42 -0400647 AC_MSG_RESULT([Disabling e2image support])
Theodore Ts'ocdf186e2001-06-13 22:16:47 +0000648 IMAGER_CMT="#"
649else
650 IMAGER_CMT=
Theodore Ts'o02d04db2008-08-22 10:52:42 -0400651 AC_MSG_RESULT([Enabling e2image support])
Theodore Ts'ocdf186e2001-06-13 22:16:47 +0000652fi
653,
Theodore Ts'o02d04db2008-08-22 10:52:42 -0400654AC_MSG_RESULT([Enabling e2image support by default])
Theodore Ts'ocdf186e2001-06-13 22:16:47 +0000655IMAGER_CMT=
656)
657AC_SUBST(IMAGER_CMT)
658dnl
659dnl handle --enable-resizer
660dnl
661AC_ARG_ENABLE([resizer],
662[ --disable-resizer disable support of e2resize program],
663if test "$enableval" = "no"
664then
Theodore Ts'o02d04db2008-08-22 10:52:42 -0400665 AC_MSG_RESULT([Disabling e2resize support])
Theodore Ts'ocdf186e2001-06-13 22:16:47 +0000666 RESIZER_CMT="#"
667else
668 RESIZER_CMT=
Theodore Ts'o02d04db2008-08-22 10:52:42 -0400669 AC_MSG_RESULT([Enabling e2resize support])
Theodore Ts'ocdf186e2001-06-13 22:16:47 +0000670fi
671,
Theodore Ts'o02d04db2008-08-22 10:52:42 -0400672AC_MSG_RESULT([Enabling e2resize support by default])
Theodore Ts'ocdf186e2001-06-13 22:16:47 +0000673RESIZER_CMT=
674)
675AC_SUBST(RESIZER_CMT)
676dnl
Theodore Ts'o8d9c50c2010-12-24 15:19:44 -0500677dnl handle --enable-defrag
678dnl
679AC_ARG_ENABLE([defrag],
680[ --disable-defrag disable support of e4defrag program],
681if test "$enableval" = "no"
682then
683 AC_MSG_RESULT([Disabling e4defrag support])
684 DEFRAG_CMT="#"
685else
686 DEFRAG_CMT=
687 AC_MSG_RESULT([Enabling e4defrag support])
688fi
689,
690AC_MSG_RESULT([Enabling e4defrag support by default])
691DEFRAG_CMT=
692)
693AC_SUBST(DEFRAG_CMT)
694dnl
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000695dnl See whether to install the `fsck' wrapper program (that calls e2fsck)
696dnl
697AC_ARG_ENABLE([fsck],
698[ --enable-fsck build fsck wrapper program],
699[if test "$enableval" = "no"
700then
701 FSCK_PROG='' FSCK_MAN=''
Theodore Ts'o02d04db2008-08-22 10:52:42 -0400702 AC_MSG_RESULT([Not building fsck wrapper])
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000703else
704 FSCK_PROG=fsck FSCK_MAN=fsck.8
Theodore Ts'o02d04db2008-08-22 10:52:42 -0400705 AC_MSG_RESULT([Building fsck wrapper])
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000706fi]
707,
708[case "$host_os" in
Theodore Ts'oe3632402004-05-04 19:39:54 -0400709 gnu*)
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000710 FSCK_PROG='' FSCK_MAN=''
Theodore Ts'o02d04db2008-08-22 10:52:42 -0400711 AC_MSG_RESULT([Not building fsck wrapper by default])
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000712 ;;
713 *)
714 FSCK_PROG=fsck FSCK_MAN=fsck.8
Theodore Ts'o02d04db2008-08-22 10:52:42 -0400715 AC_MSG_RESULT([Building fsck wrapper by default])
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000716esac]
717)
718AC_SUBST(FSCK_PROG)
719AC_SUBST(FSCK_MAN)
720dnl
Theodore Ts'o5d407732004-09-18 14:53:14 -0400721dnl See whether to install the `e2initrd-helper' program
722dnl
723AC_ARG_ENABLE([e2initrd-helper],
724[ --enable-e2initrd-helper build e2initrd-helper program],
725[if test "$enableval" = "no"
726then
727 E2INITRD_PROG='' E2INITRD_MAN=''
Theodore Ts'o02d04db2008-08-22 10:52:42 -0400728 AC_MSG_RESULT([Not building e2initrd helper])
Theodore Ts'o5d407732004-09-18 14:53:14 -0400729else
730 E2INITRD_PROG=e2initrd_helper E2INITRD_MAN=e2initrd_helper.8
Theodore Ts'o02d04db2008-08-22 10:52:42 -0400731 AC_MSG_RESULT([Building e2initrd helper])
Theodore Ts'o5d407732004-09-18 14:53:14 -0400732fi]
733,
734E2INITRD_PROG=e2initrd_helper E2INITRD_MAN=e2initrd_helper.8
Theodore Ts'o02d04db2008-08-22 10:52:42 -0400735AC_MSG_RESULT([Building e2initrd helper by default])
Theodore Ts'o5d407732004-09-18 14:53:14 -0400736)
737AC_SUBST(E2INITRD_PROG)
738AC_SUBST(E2INITRD_MAN)
Karel Zak4db2f592006-03-08 14:17:28 -0500739dnl
Theodore Ts'o5d407732004-09-18 14:53:14 -0400740dnl
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000741dnl
Theodore Ts'o32493942007-12-31 10:45:01 -0500742AC_ARG_ENABLE([tls],
743[ --disable-tls disable use of thread local support],
744[if test "$enableval" = "no"
745then
746 try_tls=""
Theodore Ts'o02d04db2008-08-22 10:52:42 -0400747 AC_MSG_RESULT([Disabling thread local support])
Theodore Ts'o32493942007-12-31 10:45:01 -0500748else
749 try_tls="yes"
Theodore Ts'o02d04db2008-08-22 10:52:42 -0400750 AC_MSG_RESULT([Enabling thread local support])
Theodore Ts'o32493942007-12-31 10:45:01 -0500751fi]
752,
Theodore Ts'oeafba6c2008-07-10 10:21:42 -0400753if test -n "$WITH_DIET_LIBC"
754then
755 try_tls=""
Theodore Ts'o02d04db2008-08-22 10:52:42 -0400756 AC_MSG_RESULT([Diet libc does not support thread local support])
Theodore Ts'oeafba6c2008-07-10 10:21:42 -0400757else
758 try_tls="yes"
Theodore Ts'o02d04db2008-08-22 10:52:42 -0400759 AC_MSG_RESULT([Try using thread local support by default])
Theodore Ts'oeafba6c2008-07-10 10:21:42 -0400760fi
Theodore Ts'o32493942007-12-31 10:45:01 -0500761)
762if test "$try_tls" = "yes"
763then
764AX_TLS
765fi
766dnl
767dnl
768dnl
Theodore Ts'od1154eb2011-09-18 17:34:37 -0400769AH_TEMPLATE([USE_UUIDD], [Define to 1 to build uuidd])
Theodore Ts'o5610f992007-12-31 11:16:56 -0500770AC_ARG_ENABLE([uuidd],
771[ --disable-uuidd disable building the uuid daemon],
772[if test "$enableval" = "no"
773then
Theodore Ts'o02d04db2008-08-22 10:52:42 -0400774 AC_MSG_RESULT([Not building uuidd])
Theodore Ts'o5610f992007-12-31 11:16:56 -0500775 UUIDD_CMT="#"
776else
Theodore Ts'od1154eb2011-09-18 17:34:37 -0400777 AC_DEFINE(USE_UUIDD, 1)
Theodore Ts'o5610f992007-12-31 11:16:56 -0500778 UUIDD_CMT=""
Theodore Ts'o02d04db2008-08-22 10:52:42 -0400779 AC_MSG_RESULT([Building uuidd])
Theodore Ts'o5610f992007-12-31 11:16:56 -0500780fi]
781,
Theodore Ts'od1154eb2011-09-18 17:34:37 -0400782AC_DEFINE(USE_UUIDD, 1)
Theodore Ts'o5610f992007-12-31 11:16:56 -0500783UUIDD_CMT=""
Theodore Ts'o02d04db2008-08-22 10:52:42 -0400784AC_MSG_RESULT([Building uuidd by default])
Theodore Ts'o5610f992007-12-31 11:16:56 -0500785)
786AC_SUBST(UUIDD_CMT)
787dnl
788dnl
789dnl
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000790MAKEFILE_LIBRARY=$srcdir/lib/Makefile.library
791AC_SUBST_FILE(MAKEFILE_LIBRARY)
792dnl
Theodore Ts'ocdf186e2001-06-13 22:16:47 +0000793dnl Add internationalization support, using gettext.
794dnl
Theodore Ts'ob0cacab2004-11-30 19:00:19 -0500795GETTEXT_PACKAGE=e2fsprogs
Theodore Ts'ocdf186e2001-06-13 22:16:47 +0000796PACKAGE=e2fsprogs
797VERSION="$E2FSPROGS_VERSION"
Theodore Ts'ob0cacab2004-11-30 19:00:19 -0500798VERSION=0.14.1
Theodore Ts'od1154eb2011-09-18 17:34:37 -0400799AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [package name for gettext])
800AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [version for gettext])
Theodore Ts'ob0cacab2004-11-30 19:00:19 -0500801AC_SUBST(GETTEXT_PACKAGE)
Theodore Ts'ocdf186e2001-06-13 22:16:47 +0000802AC_SUBST(PACKAGE)
803AC_SUBST(VERSION)
804
Theodore Ts'ocdf186e2001-06-13 22:16:47 +0000805AM_GNU_GETTEXT
806dnl
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000807dnl End of configuration options
808dnl
Theodore Ts'o74becf31997-04-26 14:37:06 +0000809AC_SUBST(BINARY_TYPE)
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000810AC_PROG_MAKE_SET
Theodore Ts'obcb915b2009-07-02 18:19:10 -0400811CHECK_GNU_MAKE
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000812AC_PATH_PROG(LN, ln, ln)
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000813AC_PROG_LN_S
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000814AC_PATH_PROG(MV, mv, mv)
815AC_PATH_PROG(CP, cp, cp)
816AC_PATH_PROG(RM, rm, rm)
817AC_PATH_PROG(CHMOD, chmod, :)
Theodore Ts'o32237012005-01-17 19:13:39 -0500818AC_PROG_AWK
819AC_PROG_EGREP
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000820AC_PATH_PROG(SED, sed, sed)
Theodore Ts'o9d564f71999-07-03 20:25:58 +0000821AC_PATH_PROG(PERL, perl, perl)
Theodore Ts'o250f79f2001-05-19 22:02:22 +0000822AC_PATH_PROG(LDCONFIG, ldconfig, :)
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000823AC_CHECK_TOOL(AR, ar, ar)
824AC_CHECK_TOOL(RANLIB, ranlib, :)
825AC_CHECK_TOOL(STRIP, strip, :)
Manish Katiyar7321d942008-04-14 17:20:03 +0530826AC_CHECK_PROG(MAKEINFO, makeinfo, makeinfo, )
827if test "_$MAKEINFO" = "_"; then
828 MAKEINFO="@echo Makeinfo is missing. Info documentation will not be built.;true"
829else
830 case "$MAKEINFO" in
831 */missing.*)
832 AC_MSG_WARN([
833*** Makeinfo is missing. Info documentation will not be built.])
834 ;;
835 *)
836 ;;
837 esac
838fi
839AC_SUBST(MAKEINFO)
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000840AC_PROG_INSTALL
Theodore Ts'o6c133521999-07-03 20:37:03 +0000841# See if we need a separate native compiler.
842if test $cross_compiling = no; then
843 BUILD_CC="$CC"
844 AC_SUBST(BUILD_CC)
845else
846 AC_CHECK_PROGS(BUILD_CC, gcc cc)
847fi
Mike Frysinger677fc912012-03-06 20:13:54 -0500848AC_CHECK_HEADERS(m4_flatten([
849 dirent.h
850 errno.h
851 execinfo.h
852 getopt.h
853 malloc.h
854 mntent.h
855 paths.h
856 semaphore.h
857 setjmp.h
858 signal.h
859 stdarg.h
860 stdint.h
861 stdlib.h
862 termios.h
863 termio.h
864 unistd.h
865 utime.h
866 linux/falloc.h
867 linux/fd.h
868 linux/major.h
Kazuya Miofbabd5c2013-12-16 00:48:12 -0500869 linux/loop.h
Mike Frysinger677fc912012-03-06 20:13:54 -0500870 net/if_dl.h
871 netinet/in.h
872 sys/disklabel.h
873 sys/file.h
874 sys/ioctl.h
875 sys/mkdev.h
876 sys/mman.h
877 sys/prctl.h
878 sys/queue.h
879 sys/resource.h
880 sys/select.h
881 sys/socket.h
882 sys/sockio.h
883 sys/stat.h
884 sys/syscall.h
885 sys/sysmacros.h
886 sys/time.h
887 sys/types.h
888 sys/un.h
889 sys/wait.h
890]))
Theodore Ts'oda76d6b2005-01-18 23:29:01 -0500891AC_CHECK_HEADERS(sys/disk.h sys/mount.h,,,
892[[
893#if HAVE_SYS_QUEUE_H
894#include <sys/queue.h>
895#endif
896]])
897AC_CHECK_HEADERS(net/if.h,,,
898[[
899#if HAVE_SYS_TYPES_H
900#include <sys/types.h>
901#endif
902#if HAVE_SYS_SOCKET
903#include <sys/socket.h>
904#endif
905]])
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000906AC_FUNC_VPRINTF
Theodore Ts'offf45482003-04-13 00:44:19 -0400907dnl Check to see if dirent has member d_reclen. On cygwin those d_reclen
908dnl is not decleared.
Theodore Ts'od1154eb2011-09-18 17:34:37 -0400909AC_CHECK_MEMBER(struct dirent.d_reclen,[AC_DEFINE(HAVE_RECLEN_DIRENT, 1,
910 [Define to 1 if dirent has d_reclen])],,
Theodore Ts'o6c65d252005-01-19 12:59:48 -0500911 [#include <dirent.h>])
Theodore Ts'o28739272014-01-03 00:26:43 -0500912AC_CHECK_MEMBERS([struct stat.st_atim])
Theodore Ts'od1154eb2011-09-18 17:34:37 -0400913dnl Check to see if ssize_t was declared
914AC_CHECK_TYPE(ssize_t,[AC_DEFINE(HAVE_TYPE_SSIZE_T, 1,
915 [Define to 1 if ssize_t declared])],,
Theodore Ts'o6c65d252005-01-19 12:59:48 -0500916 [#include <sys/types.h>])
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000917dnl
Theodore Ts'ob0b9c4d1997-10-20 23:36:30 +0000918dnl Check to see if llseek() is declared in unistd.h. On some libc's
919dnl it is, and on others it isn't..... Thank you glibc developers....
920dnl
Theodore Ts'od1154eb2011-09-18 17:34:37 -0400921AC_CHECK_DECL(llseek,[AC_DEFINE(HAVE_LLSEEK_PROTOTYPE, 1,
922 [Define to 1 if llseek declared in unistd.h])],,
Theodore Ts'o6c65d252005-01-19 12:59:48 -0500923 [#include <unistd.h>])
Theodore Ts'ob0b9c4d1997-10-20 23:36:30 +0000924dnl
Theodore Ts'o6928adc2000-05-25 23:28:50 +0000925dnl Check to see if lseek64() is declared in unistd.h. Glibc's header files
926dnl are so convoluted that I can't tell whether it will always be defined,
927dnl and if it isn't defined while lseek64 is defined in the library,
928dnl disaster will strike.
929dnl
930dnl Warning! Use of --enable-gcc-wall may throw off this test.
931dnl
932dnl
Theodore Ts'od1154eb2011-09-18 17:34:37 -0400933AC_CHECK_DECL(lseek64,[AC_DEFINE(HAVE_LSEEK64_PROTOTYPE, 1,
934 [Define to 1 if lseek64 declared in unistd.h])],,
Theodore Ts'o6c65d252005-01-19 12:59:48 -0500935 [#define _LARGEFILE_SOURCE
936 #define _LARGEFILE64_SOURCE
937 #include <unistd.h>])
Theodore Ts'o6928adc2000-05-25 23:28:50 +0000938dnl
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000939dnl Word sizes...
940dnl
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000941AC_CHECK_SIZEOF(short)
942AC_CHECK_SIZEOF(int)
943AC_CHECK_SIZEOF(long)
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000944AC_CHECK_SIZEOF(long long)
Phillip Susi274d46e2013-01-24 11:21:56 -0500945AC_CHECK_SIZEOF(off_t)
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000946SIZEOF_SHORT=$ac_cv_sizeof_short
947SIZEOF_INT=$ac_cv_sizeof_int
948SIZEOF_LONG=$ac_cv_sizeof_long
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000949SIZEOF_LONG_LONG=$ac_cv_sizeof_long_long
Phillip Susi274d46e2013-01-24 11:21:56 -0500950SIZEOF_OFF_T=$ac_cv_sizeof_off_t
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000951AC_SUBST(SIZEOF_SHORT)
952AC_SUBST(SIZEOF_INT)
953AC_SUBST(SIZEOF_LONG)
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +0000954AC_SUBST(SIZEOF_LONG_LONG)
Phillip Susi274d46e2013-01-24 11:21:56 -0500955AC_SUBST(SIZEOF_OFF_T)
Theodore Ts'o877eb6d2001-06-11 06:54:13 +0000956AC_C_BIGENDIAN
Theodore Ts'o29a5dee2007-07-04 16:28:47 -0400957BUILD_CC="$BUILD_CC" CPP="$CPP" /bin/sh $ac_aux_dir/parse-types.sh
Theodore Ts'o4ea7ea02006-04-09 08:41:55 -0400958ASM_TYPES_HEADER=./asm_types.h
959AC_SUBST_FILE(ASM_TYPES_HEADER)
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000960dnl
Theodore Ts'o488c75a2008-06-07 08:55:21 -0400961dnl Save the configuration #defines needed for the public ext2fs.h
962dnl header file
963dnl
964echo "/* These defines are needed for the public ext2fs.h header file */" \
965 > public_config.h
966if grep HAVE_SYS_TYPES_H confdefs.h > tmp_config.$$; then
967 uniq tmp_config.$$ >> public_config.h
968else
969 echo "#undef HAVE_SYS_TYPES_H" >> public_config.h
970fi
971if grep WORDS_BIGENDIAN confdefs.h > tmp_config.$$; then
972 uniq tmp_config.$$ >> public_config.h
973else
974 echo "#undef WORDS_BIGENDIAN" >> public_config.h
975fi
976rm -f tmp_config.$$
977PUBLIC_CONFIG_HEADER=./public_config.h
978AC_SUBST_FILE(PUBLIC_CONFIG_HEADER)
979dnl
Theodore Ts'o0c193f82003-08-01 14:26:23 -0400980dnl See if we have inttypes.h and if intptr_t is defined
981dnl
982AC_CHECK_HEADERS([inttypes.h])
Theodore Ts'od2ee56d2005-01-09 00:57:45 -0500983AC_CHECK_TYPES(intptr_t)
Theodore Ts'o0c193f82003-08-01 14:26:23 -0400984dnl
Theodore Ts'o50e1e101997-04-26 13:58:21 +0000985dnl See if struct stat has a st_flags field, in which case we can get file
986dnl flags somewhat portably. Also check for the analogous setter, chflags().
987dnl
988AC_MSG_CHECKING(whether struct stat has a st_flags field)
989AC_CACHE_VAL(e2fsprogs_cv_struct_st_flags,
990 AC_TRY_COMPILE([#include <sys/stat.h>],
991 [struct stat stat; stat.st_flags = 0;],
992 [e2fsprogs_cv_struct_st_flags=yes],
993 [e2fsprogs_cv_struct_st_flags=no]))
994AC_MSG_RESULT($e2fsprogs_cv_struct_st_flags)
995if test "$e2fsprogs_cv_struct_st_flags" = yes; then
Theodore Ts'oc03bc4e1999-10-20 18:20:36 +0000996 AC_MSG_CHECKING(whether st_flags field is useful)
997 AC_CACHE_VAL(e2fsprogs_cv_struct_st_flags_immut,
998 AC_TRY_COMPILE([#include <sys/stat.h>],
999 [struct stat stat; stat.st_flags |= UF_IMMUTABLE;],
1000 [e2fsprogs_cv_struct_st_flags_immut=yes],
1001 [e2fsprogs_cv_struct_st_flags_immut=no]))
1002 AC_MSG_RESULT($e2fsprogs_cv_struct_st_flags_immut)
1003 if test "$e2fsprogs_cv_struct_st_flags_immut" = yes; then
Theodore Ts'od1154eb2011-09-18 17:34:37 -04001004 AC_DEFINE(HAVE_STAT_FLAGS, 1,
1005 [Define to 1 if struct stat has st_flags])
Theodore Ts'oc03bc4e1999-10-20 18:20:36 +00001006 fi
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001007fi
Theodore Ts'o84ea6e72004-03-19 19:29:17 -05001008dnl
1009dnl Check for the presence of SA_LEN
1010dnl
Theodore Ts'o6c65d252005-01-19 12:59:48 -05001011AC_CHECK_MEMBER(struct sockaddr.sa_len,
Theodore Ts'od1154eb2011-09-18 17:34:37 -04001012 AC_DEFINE_UNQUOTED(HAVE_SA_LEN,1,
1013 [Define to 1 if if struct sockaddr contains sa_len]),,
Theodore Ts'o6c65d252005-01-19 12:59:48 -05001014 [#include <sys/types.h>
1015 #include <sys/socket.h>])
Theodore Ts'o84ea6e72004-03-19 19:29:17 -05001016dnl
Eric Sandeen9ed8e5f2009-10-02 11:32:42 -05001017dnl This will add -lblkid to the AC_CHECK_FUNCS search if we are using
1018dnl the system-provided blkid library
1019dnl
1020if test -n "$BLKID_CMT"; then
1021 AC_SEARCH_LIBS([blkid_probe_all], [blkid])
1022fi
1023dnl
Mike Frysinger677fc912012-03-06 20:13:54 -05001024AC_CHECK_FUNCS(m4_flatten([
1025 __secure_getenv
1026 backtrace
1027 blkid_probe_get_topology
1028 chflags
Baruch Siach9a393892014-01-02 13:05:37 -05001029 fadvise64
Mike Frysinger677fc912012-03-06 20:13:54 -05001030 fallocate
1031 fallocate64
1032 fchown
1033 fdatasync
1034 fstat64
1035 ftruncate64
Theodore Ts'o28739272014-01-03 00:26:43 -05001036 futimes
Mike Frysinger677fc912012-03-06 20:13:54 -05001037 getdtablesize
1038 getmntinfo
Theodore Ts'o25ff7722012-04-05 15:16:50 -07001039 getpwuid_r
Mike Frysinger677fc912012-03-06 20:13:54 -05001040 getrlimit
1041 getrusage
1042 jrand48
1043 llseek
1044 lseek64
1045 mallinfo
1046 mbstowcs
1047 memalign
1048 mmap
1049 msync
1050 nanosleep
1051 open64
1052 pathconf
1053 posix_fadvise
Baruch Siach9a393892014-01-02 13:05:37 -05001054 posix_fadvise64
Mike Frysinger677fc912012-03-06 20:13:54 -05001055 posix_memalign
1056 prctl
Theodore Ts'o1ad31742013-06-16 14:34:59 -04001057 secure_getenv
Theodore Ts'ob24efa22012-04-05 15:31:09 -07001058 setmntent
Mike Frysinger677fc912012-03-06 20:13:54 -05001059 setresgid
1060 setresuid
1061 srandom
1062 strcasecmp
1063 strdup
1064 strnlen
1065 strptime
1066 strtoull
1067 sync_file_range
1068 sysconf
1069 usleep
1070 utime
1071 valloc
1072]))
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001073dnl
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001074dnl Check to see if -lsocket is required (solaris) to make something
1075dnl that uses socket() to compile; this is needed for the UUID library
1076dnl
1077SOCKET_LIB=''
1078AC_CHECK_LIB(socket, socket, [SOCKET_LIB=-lsocket])
1079AC_SUBST(SOCKET_LIB)
1080dnl
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001081dnl See if optreset exists
1082dnl
1083AC_MSG_CHECKING(for optreset)
1084AC_CACHE_VAL(ac_cv_have_optreset,
1085[AC_EGREP_HEADER(optreset, unistd.h,
1086 ac_cv_have_optreset=yes, ac_cv_have_optreset=no)])dnl
1087AC_MSG_RESULT($ac_cv_have_optreset)
1088if test $ac_cv_have_optreset = yes; then
Theodore Ts'od1154eb2011-09-18 17:34:37 -04001089 AC_DEFINE(HAVE_OPTRESET, 1, [Define to 1 if optreset for getopt is present])
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001090fi
1091dnl
Theodore Ts'od7f45af2008-09-12 10:15:26 -04001092dnl Test for sem_init, and which library it might require:
1093dnl
Theodore Ts'od1154eb2011-09-18 17:34:37 -04001094AH_TEMPLATE([HAVE_SEM_INIT], [Define to 1 if sem_init() exists])
Theodore Ts'od7f45af2008-09-12 10:15:26 -04001095SEM_INIT_LIB=''
1096AC_CHECK_FUNC(sem_init, ,
1097 AC_CHECK_LIB(pthread, sem_init,
Theodore Ts'od1154eb2011-09-18 17:34:37 -04001098 AC_DEFINE(HAVE_SEM_INIT, 1)
Theodore Ts'od7f45af2008-09-12 10:15:26 -04001099 SEM_INIT_LIB=-lpthread,
1100 AC_CHECK_LIB(rt, sem_init,
Theodore Ts'od1154eb2011-09-18 17:34:37 -04001101 AC_DEFINE(HAVE_SEM_INIT, 1)
Theodore Ts'od7f45af2008-09-12 10:15:26 -04001102 SEM_INIT_LIB=-lrt,
1103 AC_CHECK_LIB(posix4, sem_init,
Theodore Ts'od1154eb2011-09-18 17:34:37 -04001104 AC_DEFINE(HAVE_SEM_INIT, 1)
Theodore Ts'od7f45af2008-09-12 10:15:26 -04001105 SEM_INIT_LIB=-lposix4))))dnl
1106AC_SUBST(SEM_INIT_LIB)
1107dnl
Theodore Ts'oe54635d2006-08-06 14:33:13 -04001108dnl Check for unified diff
1109dnl
1110AC_MSG_CHECKING(for unified diff option)
Theodore Ts'o27f991b2008-04-01 20:32:55 -04001111if diff -u $0 $0 > /dev/null 2>&1 ; then
Theodore Ts'oe54635d2006-08-06 14:33:13 -04001112 UNI_DIFF_OPTS=-u
1113else
1114 UNI_DIFF_OPTS=-c
1115fi
1116AC_MSG_RESULT($UNI_DIFF_OPTS)
1117AC_SUBST(UNI_DIFF_OPTS)
1118dnl
Theodore Ts'o8f3f29d2000-02-11 05:04:44 +00001119dnl We use the EXT2 ioctls only under Linux
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001120dnl
Theodore Ts'o8f3f29d2000-02-11 05:04:44 +00001121case "$host_os" in
1122linux*)
Theodore Ts'od1154eb2011-09-18 17:34:37 -04001123 AC_DEFINE(HAVE_EXT2_IOCTLS, 1, [Define to 1 if Ext2 ioctls present])
Theodore Ts'o8f3f29d2000-02-11 05:04:44 +00001124 ;;
1125esac
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001126dnl
Theodore Ts'offf45482003-04-13 00:44:19 -04001127dnl OS-specific uncomment control
Theodore Ts'oe6f2bda2002-08-18 03:37:10 -04001128dnl
1129LINUX_CMT="#"
Theodore Ts'offf45482003-04-13 00:44:19 -04001130CYGWIN_CMT="#"
1131UNIX_CMT=
Theodore Ts'oe6f2bda2002-08-18 03:37:10 -04001132case "$host_os" in
1133linux*)
1134 LINUX_CMT=
1135 ;;
Theodore Ts'offf45482003-04-13 00:44:19 -04001136cygwin)
1137 CYGWIN_CMT=
1138 UNIX_CMT="#"
Theodore Ts'offf45482003-04-13 00:44:19 -04001139 ;;
Theodore Ts'oe6f2bda2002-08-18 03:37:10 -04001140esac
1141AC_SUBST(LINUX_CMT)
Theodore Ts'offf45482003-04-13 00:44:19 -04001142AC_SUBST(CYGWIN_CMT)
1143AC_SUBST(UNIX_CMT)
Theodore Ts'oe6f2bda2002-08-18 03:37:10 -04001144dnl
Theodore Ts'o6c133521999-07-03 20:37:03 +00001145dnl Linux and Hurd places root files in the / by default
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001146dnl
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001147case "$host_os" in
Theodore Ts'o93636bd2003-07-12 02:45:05 -04001148linux* | gnu* | k*bsd*-gnu)
Theodore Ts'oa4b2d3c1998-04-03 16:12:25 +00001149 if test "$prefix" = NONE -a "$root_prefix" = NONE ; then
1150 root_prefix="";
Theodore Ts'o02d04db2008-08-22 10:52:42 -04001151 AC_MSG_RESULT([On $host_os systems, root_prefix defaults to ''])
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001152 fi
1153 ;;
1154esac
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001155dnl
Theodore Ts'oa4b2d3c1998-04-03 16:12:25 +00001156dnl On Linux/hurd, force the prefix to be /usr
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001157dnl
1158case "$host_os" in
Theodore Ts'o93636bd2003-07-12 02:45:05 -04001159linux* | gnu* | k*bsd*-gnu)
Theodore Ts'ofc6d9d51997-04-29 14:51:31 +00001160 if test "$prefix" = NONE ; then
Theodore Ts'oa4b2d3c1998-04-03 16:12:25 +00001161 prefix="/usr";
Theodore Ts'o02d04db2008-08-22 10:52:42 -04001162 AC_MSG_RESULT([On $host_os systems, prefix defaults to /usr])
Theodore Ts'obff61a72002-05-21 22:21:38 -04001163 if test "$mandir" = '${prefix}/man' ; then
Theodore Ts'o02d04db2008-08-22 10:52:42 -04001164 AC_MSG_RESULT([...and mandir defaults to /usr/share/man])
Theodore Ts'obff61a72002-05-21 22:21:38 -04001165 mandir=/usr/share/man
1166 fi
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001167 fi
1168;;
1169esac
Theodore Ts'oa4b2d3c1998-04-03 16:12:25 +00001170if test "$root_prefix" = NONE ; then
Theodore Ts'offe19911998-04-08 06:05:49 +00001171 if test "$prefix" = NONE ; then
Theodore Ts'oa4b2d3c1998-04-03 16:12:25 +00001172 root_prefix="$ac_default_prefix"
1173 else
1174 root_prefix="$prefix"
1175 fi
Theodore Ts'ob5ffead2002-05-11 19:17:00 -04001176 root_bindir=$bindir
1177 root_sbindir=$sbindir
1178 root_libdir=$libdir
1179 root_sysconfdir=$sysconfdir
1180else
1181 root_bindir='${root_prefix}/bin'
1182 root_sbindir='${root_prefix}/sbin'
1183 root_libdir='${root_prefix}/lib'
1184 root_sysconfdir='${root_prefix}/etc'
Theodore Ts'oa4b2d3c1998-04-03 16:12:25 +00001185fi
Theodore Ts'oc4ef11c2008-01-04 16:55:37 -05001186if test "$bindir" != '${exec_prefix}/bin'; then
1187 root_bindir=$bindir
Theodore Ts'o02d04db2008-08-22 10:52:42 -04001188 AC_MSG_RESULT([Setting root_bindir to $root_bindir])
Theodore Ts'oc4ef11c2008-01-04 16:55:37 -05001189fi
1190if test "$sbindir" != '${exec_prefix}/sbin'; then
1191 root_sbindir=$sbindir
Theodore Ts'o02d04db2008-08-22 10:52:42 -04001192 AC_MSG_RESULT([Setting root_sbindir to $root_sbindir])
Theodore Ts'oc4ef11c2008-01-04 16:55:37 -05001193fi
1194if test "$libdir" != '${exec_prefix}/lib'; then
1195 root_libdir=$libdir
Theodore Ts'o02d04db2008-08-22 10:52:42 -04001196 AC_MSG_RESULT([Setting root_libdir to $root_libdir])
Theodore Ts'oc4ef11c2008-01-04 16:55:37 -05001197fi
1198if test "$sysconfdir" != '${prefix}/etc'; then
1199 root_sysconfdir=$sysconfdir
Theodore Ts'o02d04db2008-08-22 10:52:42 -04001200 AC_MSG_RESULT([Setting root_sysconfdir to $root_sysconfdir])
Theodore Ts'oc4ef11c2008-01-04 16:55:37 -05001201fi
Theodore Ts'oa4b2d3c1998-04-03 16:12:25 +00001202AC_SUBST(root_prefix)
Theodore Ts'ob5ffead2002-05-11 19:17:00 -04001203AC_SUBST(root_bindir)
1204AC_SUBST(root_sbindir)
1205AC_SUBST(root_libdir)
1206AC_SUBST(root_sysconfdir)
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001207dnl
Theodore Ts'o55e00a22011-09-18 23:53:23 -04001208dnl Allow specification of the multiarch arch
1209dnl
1210AC_ARG_WITH([multiarch],
1211[ --with-multiarch=ARCH specify the multiarch triplet],
1212libdir=$libdir/$withval
1213root_libdir=$root_libdir/$withval
1214)dnl
1215dnl
Theodore Ts'od3de1a72012-12-15 22:10:27 -05001216dnl See if -static works. This could fail if the linker does not
1217dnl support -static, or if required external libraries are not available
1218dnl in static form.
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001219dnl
Theodore Ts'od3de1a72012-12-15 22:10:27 -05001220AC_MSG_CHECKING([whether we can link with -static])
Theodore Ts'oae851481997-04-29 18:13:24 +00001221AC_CACHE_VAL(ac_cv_e2fsprogs_use_static,
1222[SAVE_LDFLAGS=$LDFLAGS; LDFLAGS="$LDFLAGS -static"
1223AC_TRY_LINK([#include <stdio.h>],[fflush(stdout);],
1224 ac_cv_e2fsprogs_use_static=yes, ac_cv_e2fsprogs_use_static=no)
1225LDFLAGS=$SAVE_LDFLAGS])
Theodore Ts'odefde781999-01-04 07:39:19 +00001226dnl
1227dnl Regardless of how the test turns out, Solaris doesn't handle -static
1228dnl This is caused by the socket library requiring the nsl library, which
1229dnl requires the -dl library, which only works for dynamically linked
1230dnl programs. It basically means you can't have statically linked programs
1231dnl which use the network under Solaris.
1232dnl
1233case "$host_os" in
1234solaris2.*)
1235 ac_cv_e2fsprogs_use_static=no
1236;;
1237esac
Theodore Ts'oae851481997-04-29 18:13:24 +00001238AC_MSG_RESULT($ac_cv_e2fsprogs_use_static)
Theodore Ts'o74becf31997-04-26 14:37:06 +00001239LDFLAG_STATIC=
Theodore Ts'oae851481997-04-29 18:13:24 +00001240if test $ac_cv_e2fsprogs_use_static = yes; then
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001241 LDFLAG_STATIC=-static
Theodore Ts'oae851481997-04-29 18:13:24 +00001242fi
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001243AC_SUBST(LDFLAG_STATIC)
1244dnl
Theodore Ts'o07a0db12003-07-05 14:50:24 -04001245dnl Work around mysterious Darwin / GNU libintl problem
1246dnl (__asm__ redirection doesn't work for some mysterious reason. Looks like
1247dnl Apple hacked gcc somehow?)
1248dnl
1249case "$host_os" in
1250darwin*)
Theodore Ts'o02d04db2008-08-22 10:52:42 -04001251 AC_MSG_RESULT([Using Apple Darwin / GNU libintl workaround])
Theodore Ts'od1154eb2011-09-18 17:34:37 -04001252 AC_DEFINE(_INTL_REDIRECT_MACROS, 1,
1253 [Define to 1 if Apple Darwin libintl workaround is needed])
Theodore Ts'o07a0db12003-07-05 14:50:24 -04001254 ;;
1255esac
1256dnl
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001257dnl Make the ss and et directories work correctly.
1258dnl
1259SS_DIR=`cd ${srcdir}/lib/ss; pwd`
1260ET_DIR=`cd ${srcdir}/lib/et; pwd`
1261AC_SUBST(SS_DIR)
1262AC_SUBST(ET_DIR)
1263dnl
1264dnl Only try to run the test suite if we're not cross compiling.
1265dnl
1266if test "$cross_compiling" = yes ; then
1267 DO_TEST_SUITE=
1268else
1269 DO_TEST_SUITE=check
1270fi
1271AC_SUBST(DO_TEST_SUITE)
1272dnl
Theodore Ts'oc6f35b82003-05-17 16:29:27 -04001273dnl Only include the intl include files if we're building with them
Theodore Ts'od1154eb2011-09-18 17:34:37 -04001274dnl
1275INCLUDES='-I. -I$(top_builddir)/lib -I$(top_srcdir)/lib'
1276if test -n "$CPPFLAGS" ; then
1277 INCLUDES="$INCLUDES $CPPFLAGS"
Theodore Ts'oc6f35b82003-05-17 16:29:27 -04001278fi
Theodore Ts'od1154eb2011-09-18 17:34:37 -04001279if test "$USE_INCLUDED_LIBINTL" = "yes" ; then
1280 INCLUDES=$INCLUDES' -I$(top_builddir)/intl -I$(top_srcdir)/intl'
1281fi
1282AC_SUBST(INCLUDES)
Theodore Ts'oc6f35b82003-05-17 16:29:27 -04001283dnl
Theodore Ts'odd947da2005-11-09 18:37:07 -04001284dnl Build CFLAGS
1285dnl
1286if test $cross_compiling = no; then
Theodore Ts'o28739272014-01-03 00:26:43 -05001287 BUILD_CFLAGS="$CFLAGS $CPPFLAGS $INCLUDES -DHAVE_CONFIG_H"
Theodore Ts'odd947da2005-11-09 18:37:07 -04001288 BUILD_LDFLAGS="$LDFLAGS"
1289else
1290 BUILD_CFLAGS=
1291 BUILD_LDFLAGS=
1292fi
1293AC_SUBST(BUILD_CFLAGS)
1294AC_SUBST(BUILD_LDFLAGS)
1295dnl
Theodore Ts'o50e1e101997-04-26 13:58:21 +00001296dnl Make our output files, being sure that we create the some miscellaneous
1297dnl directories
1298dnl
1299test -d lib || mkdir lib
1300test -d include || mkdir include
1301test -d include/linux || mkdir include/linux
Theodore Ts'odefde781999-01-04 07:39:19 +00001302test -d include/asm || mkdir include/asm
Theodore Ts'obff0cc92003-03-23 01:37:53 -05001303for i in MCONFIG Makefile e2fsprogs.spec \
Theodore Ts'o183c73b2012-05-12 23:13:24 -04001304 util/Makefile util/subst.conf util/gen-tarball util/install-symlink \
Theodore Ts'o4ea7ea02006-04-09 08:41:55 -04001305 lib/et/Makefile lib/ss/Makefile lib/e2p/Makefile \
1306 lib/ext2fs/Makefile lib/ext2fs/ext2_types.h \
Theodore Ts'o94ba8c72003-03-02 02:07:14 -05001307 lib/uuid/Makefile lib/uuid/uuid_types.h \
Aditya Kalif239fef2011-07-20 11:40:02 -07001308 lib/blkid/Makefile lib/blkid/blkid_types.h lib/quota/Makefile \
Theodore Ts'oe6441862005-01-26 12:59:25 -05001309 lib/ss/ss.pc lib/uuid/uuid.pc lib/et/com_err.pc \
1310 lib/e2p/e2p.pc lib/blkid/blkid.pc lib/ext2fs/ext2fs.pc \
Theodore Ts'o921f4ad2004-11-19 17:25:27 -05001311 misc/Makefile ext2ed/Makefile e2fsck/Makefile \
Theodore Ts'o94ba8c72003-03-02 02:07:14 -05001312 debugfs/Makefile tests/Makefile tests/progs/Makefile \
Matthias Andree98a5ad62009-07-15 17:37:52 +02001313 resize/Makefile doc/Makefile intl/Makefile \
1314 intl/libgnuintl.h po/Makefile.in ; do
Theodore Ts'o94ba8c72003-03-02 02:07:14 -05001315 if test -d `dirname ${srcdir}/$i` ; then
1316 outlist="$outlist $i"
1317 fi
1318done
1319AC_OUTPUT($outlist)
Theodore Ts'oee683a12005-02-05 15:53:56 -05001320if test -f util/gen-tarball; then chmod +x util/gen-tarball; fi