]> wimlib.net Git - wimlib/blob - configure.ac
Windows native build
[wimlib] / configure.ac
1 AC_INIT([wimlib], [1.3.0], [ebiggers3@gmail.com])
2 AC_CONFIG_SRCDIR([src/wim.c])
3 AC_CONFIG_MACRO_DIR([m4])
4 AC_CONFIG_AUX_DIR([build-aux])
5 AM_INIT_AUTOMAKE([-Wall -Werror subdir-objects])
6 AC_C_BIGENDIAN
7 m4_ifdef([AM_PROG_AR], [AM_PROG_AR])
8 LT_INIT
9 AC_CONFIG_HEADERS([config.h])
10 AC_CONFIG_FILES([Makefile
11                 doc/Doxyfile
12                 wimlib.pc
13                 doc/imagex.1
14                 doc/imagex-append.1
15                 doc/imagex-apply.1
16                 doc/imagex-capture.1
17                 doc/imagex-delete.1
18                 doc/imagex-dir.1
19                 doc/imagex-export.1
20                 doc/imagex-info.1
21                 doc/imagex-join.1
22                 doc/imagex-mount.1
23                 doc/imagex-mountrw.1
24                 doc/imagex-optimize.1
25                 doc/imagex-split.1
26                 doc/imagex-unmount.1
27                 doc/mkwinpeimg.1
28                 ])
29 AC_PROG_CC
30 AM_PROG_CC_C_O
31 AC_CANONICAL_HOST
32
33 AC_CHECK_FUNCS([utimensat lutimes utime flock])
34 AC_CHECK_HEADERS([endian.h byteswap.h sys/byteorder.h sys/endian.h \
35                   sys/param.h machine/endian.h alloca.h stdlib.h stdarg.h \
36                   errno.h attr/xattr.h utime.h sys/file.h glob.h])
37
38 AC_CHECK_MEMBER([struct stat.st_mtim],
39                 [AC_DEFINE([HAVE_STAT_NANOSECOND_PRECISION], [1],
40                           [Define to 1 if nanosecond precision timestamps are
41                            supported])],
42                 [],
43                 [[#include <sys/stat.h>]])
44
45
46 AC_ARG_WITH(pkgconfigdir,
47             [  --with-pkgconfigdir=DIR      pkgconfig file in DIR @<:@LIBDIR/pkgconfig@:>@],
48             [pkgconfigdir=$withval],
49             [pkgconfigdir='${libdir}/pkgconfig'])
50 AC_SUBST(pkgconfigdir)
51
52 AC_CHECK_LIB([xml2], [xmlParseFile], [have_libxml=true],
53              [AC_MSG_ERROR(["cannot find libxml2"])])
54 LIBXML2_LDADD=`pkg-config libxml-2.0 --libs`
55 LIBXML2_CFLAGS=`pkg-config libxml-2.0 --cflags`
56 AC_SUBST([LIBXML2_LDADD], [$LIBXML2_LDADD])
57 AC_SUBST([LIBXML2_CFLAGS], [$LIBXML2_CFLAGS])
58
59 AC_MSG_CHECKING([whether to include debugging messages])
60 AC_ARG_ENABLE([debug],
61         AS_HELP_STRING([--enable-debug], [include lots of debugging messages]),
62         [ENABLE_DEBUG=$enableval],
63         [ENABLE_DEBUG=no]
64         )
65 AC_MSG_RESULT([$ENABLE_DEBUG])
66 if test "x$ENABLE_DEBUG" = "xyes"; then
67         AC_DEFINE([ENABLE_DEBUG], [1],
68                         [Define to 1 if including lots of debug messages.])
69 fi
70
71 AC_MSG_CHECKING([whether to include more debugging messages])
72 AC_ARG_ENABLE([more_debug],
73         AS_HELP_STRING([--enable-more-debug],
74                         [include even more debugging messages]),
75         [ENABLE_MORE_DEBUG=$enableval],
76         [ENABLE_MORE_DEBUG=no]
77         )
78 AC_MSG_RESULT([$ENABLE_MORE_DEBUG])
79 if test "x$ENABLE_MORE_DEBUG" = "xyes"; then
80         AC_DEFINE([ENABLE_MORE_DEBUG], [1],
81                         [Define to 1 if including even more debug messages.])
82 fi
83
84 AC_MSG_CHECKING([whether to include error messages])
85 AC_ARG_ENABLE([error_messages],
86         AS_HELP_STRING([--disable-error-messages],
87                         [do not compile in error messsages]),
88         [ENABLE_ERROR_MESSAGES=$enableval],
89         [ENABLE_ERROR_MESSAGES=yes]
90         )
91 AC_MSG_RESULT([$ENABLE_ERROR_MESSAGES])
92 if test "x$ENABLE_ERROR_MESSAGES" = "xyes"; then
93         AC_DEFINE([ENABLE_ERROR_MESSAGES], [1],
94                         [Define to 1 if including error messages])
95 fi
96
97 AC_MSG_CHECKING([whether to support custom memory allocation functions])
98 AC_ARG_ENABLE([custom_memory_allocator],
99         AS_HELP_STRING([--disable-custom-memory-allocator],
100                        [do not support the use of custom memory allocation
101                         functions]),
102         [ENABLE_CUSTOM_MEMORY_ALLOCATOR=$enableval],
103         [ENABLE_CUSTOM_MEMORY_ALLOCATOR=yes]
104         )
105 AC_MSG_RESULT([$ENABLE_CUSTOM_MEMORY_ALLOCATOR])
106 if test "x$ENABLE_CUSTOM_MEMORY_ALLOCATOR" = "xyes"; then
107         AC_DEFINE([ENABLE_CUSTOM_MEMORY_ALLOCATOR], [1],
108                 [Define to 1 if supporting custom memory allocation functions])
109 fi
110
111 AC_MSG_CHECKING([whether to include assertions])
112 AC_ARG_ENABLE([assertions],
113         AS_HELP_STRING([--disable-assertions], [do not include assertions]),
114         [ENABLE_ASSERTIONS=$enableval],
115         [ENABLE_ASSERTIONS=yes]
116         )
117 AC_MSG_RESULT([$ENABLE_ASSERTIONS])
118 if test "x$ENABLE_ASSERTIONS" = "xyes"; then
119         AC_DEFINE([ENABLE_ASSERTIONS], [1], [Define to 1 if including assertions.])
120 fi
121
122 AC_MSG_CHECKING([whether to include more assertions])
123 AC_ARG_ENABLE([more-assertions],
124         AS_HELP_STRING([--enable-more-assertions], [include even more assertions]),
125         [ENABLE_MORE_ASSERTIONS=$enableval],
126         [ENABLE_MORE_ASSERTIONS=no]
127         )
128 AC_MSG_RESULT([$ENABLE_MORE_ASSERTIONS])
129 if test "x$ENABLE_MORE_ASSERTIONS" = "xyes"; then
130         AC_DEFINE([ENABLE_MORE_ASSERTIONS], [1], [Define to 1 if including more assertions.])
131 fi
132
133
134 AC_MSG_CHECKING([whether to include compression verification])
135 AC_ARG_ENABLE([verify_compression],
136               AS_HELP_STRING([--disable-verify-compression], [disable
137                                 checking if blocks we compress can be correctly
138                                 decompressed]),
139         [ENABLE_VERIFY_COMPRESSION=$enableval],
140         [ENABLE_VERIFY_COMPRESSION=yes]
141         )
142 AC_MSG_RESULT([$ENABLE_VERIFY_COMPRESSION])
143 if test "x$ENABLE_VERIFY_COMPRESSION" = "xyes"; then
144         AC_DEFINE([ENABLE_VERIFY_COMPRESSION], [1], [Define to 1 to verify
145                    compressed data])
146 fi
147
148 AC_MSG_CHECKING([whether to include support for multi-threaded compression])
149 AC_ARG_ENABLE([multithreaded-compression],
150         AS_HELP_STRING([--disable-multithreaded-compression],
151                         [do not compile in the code for multi-threaded compression]),
152         [ENABLE_MULTITHREADED_COMPRESSION=$enableval],
153         [ENABLE_MULTITHREADED_COMPRESSION=yes]
154         )
155 AC_MSG_RESULT([$ENABLE_MULTITHREADED_COMPRESSION])
156 if test "x$ENABLE_MULTITHREADED_COMPRESSION" = "xyes"; then
157         AC_DEFINE([ENABLE_MULTITHREADED_COMPRESSION], [1],
158                         [Define to 1 if including support for multithreaded
159                          compression])
160         PTHREAD_LDADD="-lpthread"
161 else
162         PTHREAD_LDADD=""
163 fi
164 AC_SUBST([PTHREAD_LDADD], [$PTHREAD_LDADD])
165
166 case "$host" in
167         *-*-mingw*)
168                 # Native Windows
169                 WINDOWS_EXTRA_LDFLAGS="-no-undefined"
170                 VISIBILITY_CFLAGS=""
171                 WITH_NTFS_3G_DEFAULT="no"
172                 WITH_FUSE_DEFAULT="no"
173                 WINDOWS_BUILD="yes"
174                 WINDOWS_LDADD="-lshlwapi"
175                 ;;
176         *-*-cygwin*)
177                 # Cygwin (WARNING: not well supported)
178                 WINDOWS_EXTRA_LDFLAGS="-no-undefined"
179                 VISIBILITY_CFLAGS=""
180                 WITH_NTFS_3G_DEFAULT="no"
181                 WITH_FUSE_DEFAULT="no"
182                 WINDOWS_BUILD="yes"
183                 WINDOWS_LDADD=""
184                 ;;
185         *)
186                 # UNIX / other
187                 WINDOWS_EXTRA_LDFLAGS=""
188                 VISIBILITY_CFLAGS="-fvisibility=hidden"
189                 WITH_NTFS_3G_DEFAULT="yes"
190                 WITH_FUSE_DEFAULT="yes"
191                 WINDOWS_BUILD="no"
192                 WINDOWS_LDADD=""
193                 ;;
194 esac
195
196 AC_SUBST([WINDOWS_EXTRA_LDFLAGS], [$WINDOWS_EXTRA_LDFLAGS])
197 AC_SUBST([VISIBILITY_CFLAGS], [$VISIBILITY_CFLAGS])
198 AC_SUBST([WINDOWS_LDADD], [$WINDOWS_LDADD])
199 AM_CONDITIONAL([WINDOWS_BUILD], [test "x$WINDOWS_BUILD" = "xyes"])
200
201 AC_MSG_CHECKING([whether to include support for ntfs-3g])
202 AC_ARG_WITH([ntfs-3g],
203               AS_HELP_STRING([--without-ntfs-3g], [build without NTFS-3g.
204                               This will disable the ability to use NTFS-specific
205                               information when capturing or applying WIMs to a
206                               NTFS filesystem.]),
207         [WITH_NTFS_3G=$withval],
208         [WITH_NTFS_3G=$WITH_NTFS_3G_DEFAULT]
209         )
210 AC_MSG_RESULT([$WITH_NTFS_3G])
211 if test "x$WITH_NTFS_3G" = "xyes"; then
212         AC_DEFINE([WITH_NTFS_3G], [1], [Define to 1 to enable support for
213                    NTFS-specific information])
214
215         dnl This effectively checks for NTFS-3g 2011.4.12 or later
216         AC_CHECK_LIB([ntfs-3g], [ntfs_xattr_system_setxattr], [],
217                         [AC_MSG_ERROR([Cannot find libntfs-3g version 2011-4-12
218         or later. Without libntfs-3g, wimlib cannot include support for
219         capturing and applying WIMs on NTFS filesystems while preserving
220         NTFS-specific data such as security descriptors and alternate data
221         streams.  You should either install libntfs-3g, or configure with
222         --without-ntfs-3g to disable support for these NTFS-specific
223         features.])])
224         LIBNTFS_3G_LDADD="`pkg-config --libs libntfs-3g`"
225         LIBNTFS_3G_CFLAGS="`pkg-config --cflags libntfs-3g`"
226
227         dnl This checks for a NTFS-3g interface that was changed in the
228         dnl 2013.1.13 release
229         AC_CHECK_DECL([NTFS_MNT_RDONLY],
230                       [AC_DEFINE([HAVE_NTFS_MNT_RDONLY],
231                                  [1],
232                                  [Define to 1 if ntfs_mount() takes the flag NTFS_MNT_RDONLY])],
233                       ,
234                       [#include <ntfs-3g/volume.h>])
235 else
236         LIBNTFS_3G_LDADD=
237         LIBNTFS_3G_CFLAGS=
238
239         if test "x$WINDOWS_BUILD" != "xyes"; then
240                 AM_ICONV
241                 if test "x$am_cv_func_iconv" != "xyes"; then
242                         AC_MSG_ERROR([Cannot find the iconv() function.
243                         iconv() is used to convert between UTF-8 and UTF-16 encodings of WIM
244                         filenames and XML data.  Wimlib cannot be compiled without it.  iconv()
245                         is available in the latest version of glibc and sometimes in other
246                         libraries.])
247                 fi
248         fi
249 fi
250 AM_CONDITIONAL([WITH_NTFS_3G], [test "x$WITH_NTFS_3G" = "xyes"])
251
252 AC_SUBST([LIBNTFS_3G_LDADD], [$LIBNTFS_3G_LDADD])
253 AC_SUBST([LIBNTFS_3G_CFLAGS], [$LIBNTFS_3G_CFLAGS])
254
255 AC_MSG_CHECKING([whether to include support for mounting WIMs])
256 AC_ARG_WITH([fuse],
257                 AS_HELP_STRING([--without-fuse], [build without libfuse.
258                                         This will disable the ability to mount
259                                         WIM files.]),
260         [WITH_FUSE=$withval],
261         [WITH_FUSE=$WITH_FUSE_DEFAULT]
262         )
263 AC_MSG_RESULT([$WITH_FUSE])
264 if test "x$WITH_FUSE" = "xyes"; then
265         AC_DEFINE([WITH_FUSE], [1], [Define to 1 if using FUSE.])
266
267
268         AC_CHECK_LIB([fuse], [fuse_main_real], [have_fuse=true],
269                         [AC_MSG_ERROR([Cannot find libfuse.
270         Without libfuse, wimlib cannot include support for mounting WIMs.  You
271         should either install libfuse, or configure with --without-fuse to
272         disable support for mounting WIMs.])
273         ])
274         AC_CHECK_LIB([rt], [mq_open], [have_posix_mq=true],
275                      [AC_MSG_ERROR([Cannot find librt for POSIX message queue
276         functions.  Without these functions, wimlib cannot include support for
277         mounting WIMs.  You should either update your C library to a recent
278         version of glibc, or configure with --without-fuse to disable support
279         for mounting WIMs.])
280         ])
281         LIBFUSE_LDADD="`pkg-config --libs fuse` -lrt"
282         LIBFUSE_CFLAGS="`pkg-config --cflags fuse`"
283 else
284         LIBFUSE_LDADD=
285         LIBFUSE_CFLAGS=
286 fi
287 AM_CONDITIONAL([WITH_FUSE], [test "x$WITH_FUSE" = "xyes"])
288 AC_SUBST([LIBFUSE_LDADD], [$LIBFUSE_LDADD])
289 AC_SUBST([LIBFUSE_CFLAGS], [$LIBFUSE_CFLAGS])
290
291 ENABLE_XATTR=no
292 AC_ARG_ENABLE([xattr],
293         [AS_HELP_STRING([--enable-xattr], [Enable the xattr interface to access WIM
294                         alternate data streams (default: autodetect)])],
295         [ENABLE_XATTR=$enableval],
296         [AC_CHECK_FUNC([setxattr],
297                 [AC_CHECK_HEADER([attr/xattr.h],
298                         [ENABLE_XATTR=yes],
299                         [AC_MSG_WARN([Cannot find the "attr/xattr.h" header.  You will not be
300                          able to use the xattr interface to access WIM alternate data
301                          streams.])])],
302                 [AC_MSG_WARN([Cannot find the setxattr() function.  You will not be
303                  able to use the xattr interface to access WIM alternate data
304                  streams.])])])
305
306 if test "x$ENABLE_XATTR" = "xyes"; then
307         AC_DEFINE([ENABLE_XATTR], [1], [Define to 1 if using the xattr
308                         interface to WIM alternate data streams])
309 fi
310
311 AC_MSG_CHECKING([whether to use SSSE3-accelerated SHA1 ])
312 AC_ARG_ENABLE([ssse3-sha1],
313             AS_HELP_STRING([--enable-ssse3-sha1], [use assembly language implementation
314                                 of SHA1 from Intel, accelerated with vector
315                                 instructions (SSSE3-enabled CPU required)]),
316         [ENABLE_SSSE3_SHA1=$enableval],
317         [ENABLE_SSSE3_SHA1=no]
318         )
319
320 AC_MSG_RESULT([$ENABLE_SSSE3_SHA1])
321 if test "x$ENABLE_SSSE3_SHA1" = "xyes"; then
322         AC_DEFINE([ENABLE_SSSE3_SHA1], [1],
323                         [Define to 1 if using vectorized implementation of SHA1])
324         SSSE3_SHA1_OBJ=sha1-ssse3.lo
325         AX_PROG_NASM
326         AC_SUBST([NASM], [$nasm])
327 else
328         SSSE3_SHA1_OBJ=
329 fi
330 AC_SUBST([SSSE3_SHA1_OBJ], [$SSSE3_SHA1_OBJ])
331
332 if test "x$ENABLE_SSSE3_SHA1" = "xyes"; then
333         WITH_LIBCRYPTO=no
334 else
335         AC_ARG_WITH([libcrypto],
336             AS_HELP_STRING([--without-libcrypto], [build in the SHA1 algorithm,
337                                         rather than use external libcrypto from
338                                         OpenSSL (default is autodetect)]),
339         [WITH_LIBCRYPTO=$withval],
340         [AC_CHECK_LIB([crypto], [SHA1],
341                      [WITH_LIBCRYPTO=yes],
342                      [AC_MSG_WARN([Cannot find libcrypto: using stand-alone SHA1 code instead of OpenSSL])
343                      WITH_LIBCRYPTO=no
344                      ])])
345 fi
346 AC_MSG_CHECKING([whether to use SHA1 function from system libcrypto])
347 AC_MSG_RESULT([$WITH_LIBCRYPTO])
348
349 if test "x$WITH_LIBCRYPTO" = "xyes" -a "x$ENABLE_SSSE3_SHA1" = "xno"; then
350         AC_DEFINE([WITH_LIBCRYPTO], [1], [Define to 1 if using libcrypto SHA1])
351         LIBCRYPTO_LDADD=`pkg-config --libs libcrypto 2>/dev/null`
352         if test $? -ne 0; then
353                 LIBCRYPTO_LDADD=-lcrypto;
354         fi
355         LIBCRYPTO_CFLAGS=`pkg-config --cflags libcrypto 2>/dev/null`
356 else
357         LIBCRYPTO_LDADD=
358         LIBCRYPTO_CFLAGS=
359 fi
360 AC_SUBST([LIBCRYPTO_LDADD], [$LIBCRYPTO_LDADD])
361 AC_SUBST([LIBCRYPTO_CFLAGS], [$LIBCRYPTO_CFLAGS])
362 AC_SUBST([SHA1_SOURCES], [$SHA1_SOURCES])
363
364 AC_OUTPUT