forked from xroche/fastlzlib
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathconfigure.ac
51 lines (37 loc) · 1.13 KB
/
configure.ac
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_PREREQ([2.69])
AC_INIT([libfastlz], [1], [/dev/null])
AM_INIT_AUTOMAKE([1.11.1 gnu subdir-objects])
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_SRCDIR([fastlzlib-zlib.h])
AC_CONFIG_HEADERS([config.h])
#AC_CANONICAL_TARGET
AC_CANONICAL_BUILD
AC_CANONICAL_HOST
AM_MAINTAINER_MODE
# Checks for programs.
AC_PROG_CC
AC_PROG_MAKE_SET
AC_PROG_CPP
AC_PROG_INSTALL
AC_PROG_LN_S
AC_CHECK_HEADERS(zlib.h)
LT_INIT
# Checks for typedefs, structures, and compiler characteristics.
AC_TYPE_SIZE_T
AC_CONFIG_FILES([Makefile])
AC_OUTPUT
cat <<EOF
libfastlz configuration summary
-------------------------
libfastlz version : ${PACKAGE_VERSION}
configured for host : ${host_cpu}-${host_vendor}-${host_os}
source code location : ${srcdir}
compiler : ${CC}
preprocessor definitions : ${DEFS}
preprocessor flags : ${CPPFLAGS}
compiler flags : ${CFLAGS}
libfastlz ${PACKAGE_VERSION} configured.
Type \`make' to build. Type \`make install' to install.
EOF