"Fossies" - the Fresh Open Source Software Archive 
Member "xdelta3-3.0.11/configure.ac" (30 Oct 2015, 1408 Bytes) of package /linux/misc/xdelta3-3.0.11.tar.gz:
As a special service "Fossies" has tried to format the requested text file into HTML format (style:
standard) with prefixed line numbers.
Alternatively you can here
view or
download the uninterpreted source code file.
1 AC_INIT([Xdelta3], [3.0.11], [josh.macdonald@gmail.com],
2 [xdelta3], [http://xdelta.org/])
3 AC_PREREQ([2.68])
4 AC_CONFIG_MACRO_DIR([m4])
5 LT_INIT
6 AM_INIT_AUTOMAKE([1.9 no-define foreign tar-ustar subdir-objects])
7
8 AX_CHECK_ALIGNED_ACCESS_REQUIRED
9 AC_PROG_CC
10 AC_PROG_CXX
11
12 AC_CHECK_SIZEOF(size_t)
13 AC_CHECK_SIZEOF(unsigned int)
14 AC_CHECK_SIZEOF(unsigned long)
15 AC_CHECK_SIZEOF(unsigned long long)
16
17 AC_ARG_WITH(
18 [liblzma],
19 [AC_HELP_STRING(
20 [--with-liblzma],
21 [build with liblzma support @<:@default=autodetect@:>@])],
22 [USE_LIBLZMA=$withval],
23 [USE_LIBLZMA=auto])
24
25 if test "x$USE_LIBLZMA" != xno ; then
26 AC_CHECK_HEADERS([lzma.h],,[
27 if test "x$with_liblzma" = xyes ; then
28 AC_MSG_FAILURE([liblzma includes were not found])
29 fi])
30 AC_CHECK_LIB([lzma], [lzma_easy_buffer_encode],,[
31 if test "x$with_liblzma" = xyes ; then
32 AC_MSG_FAILURE([liblzma library were not found])
33 fi])
34 fi
35
36 #AM_PATH_PYTHON(,, [:])
37 #AM_CONDITIONAL([HAVE_PYTHON], [test "$PYTHON" != :])
38 #AX_PYTHON_DEVEL()
39 #AX_PKG_SWIG(2.0.0,,)
40 #AX_SWIG_PYTHON
41
42 dnl --enable-debug-symbols : build with debug symbols?
43 AC_ARG_ENABLE(debug-symbols,
44 AS_HELP_STRING(--enable-debug-symbols,[Build with debug symbols (default is NO)]),,enableval=no)
45 AM_CONDITIONAL([DEBUG_SYMBOLS], [test ${enableval} = "yes"])
46
47 AC_CONFIG_HEADERS([config.h])
48 AC_CONFIG_FILES([Makefile])
49 AC_OUTPUT