File: configure.ac

package info (click to toggle)
osmctools 0.9-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 976 kB
  • sloc: ansic: 16,874; makefile: 15
file content (16 lines) | stat: -rw-r--r-- 452 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
AC_INIT([osmctools], [1.0], [markus.weber@gmx.com])

AM_INIT_AUTOMAKE([foreign -Wall -Werror])

AC_PROG_CC

AC_CHECK_LIB(z, gzopen, [enable_osmconvert=yes], [enable_osmconvert=no])
if test "x$enable_osmconvert" = "xno"; then
	AC_MSG_WARN([zlib not found, osmconvert will not be compiled])
fi
AM_CONDITIONAL(ENABLE_OSMCONVERT, test "x$enable_osmconvert" = xyes)

AC_CONFIG_HEADERS([include/config.h])
AC_CONFIG_FILES([Makefile src/Makefile])

AC_OUTPUT