libblobpack/configure.ac

23 lines
525 B
Text
Raw Permalink Normal View History

2016-08-30 12:46:54 +02:00
dnl Process this file with autoconf to produce a configure script
AC_INIT(libblobpack.so,[0.1.0],mkschreder.uk@gmail.com)
AC_CONFIG_AUX_DIR(config)
AC_CONFIG_SRCDIR(./src/blob.c)
2016-08-30 15:15:52 +02:00
AC_CONFIG_MACRO_DIR([m4])
2016-08-30 12:46:54 +02:00
m4_pattern_allow([AM_DEFAULT_VERBOSITY])
2016-08-30 12:46:54 +02:00
AM_INIT_AUTOMAKE
2016-08-30 14:59:29 +02:00
AX_CODE_COVERAGE
2016-08-30 12:46:54 +02:00
LT_INIT
AC_PROG_CC
2016-09-09 23:48:00 +02:00
AC_CHECK_HEADER([unistd.h],
[AC_DEFINE([HAVE_UNISTD_H], [1],
[Define to 1 if you have <unistd.h>.])],
[])
2016-08-30 13:13:59 +02:00
AC_OUTPUT(Makefile src/Makefile test/Makefile)
2016-08-30 12:46:54 +02:00