X-Git-Url: http://git.cascardo.eti.br/?p=cascardo%2Fdeclara.git;a=blobdiff_plain;f=configure.ac;h=b632a411167b9711b94c6563e38fcd21e23517cc;hp=4b20a5f0f286950e8d35b3ae63a7dcc033e686d7;hb=5e35cc08b2adfd14da44084cd46fc6edea5a026c;hpb=fd3cf522b8393ba649bdcb70818e0f6991bf2ab0 diff --git a/configure.ac b/configure.ac index 4b20a5f..b632a41 100644 --- a/configure.ac +++ b/configure.ac @@ -1,7 +1,17 @@ -AC_INIT(declara,2015.0,libreceita@lists.libreplanetbr.org) +AC_INIT(declara,2016.0,libreceita@lists.libreplanetbr.org) AC_CONFIG_AUX_DIR(build-aux) AM_INIT_AUTOMAKE +LT_INIT AC_PROG_CC AC_PROG_INSTALL + +dnl Checking for zlib. +AC_SEARCH_LIBS([crc32], [z], [], + AC_MSG_ERROR([could not find zlib])) + +dnl Checking for readline +AC_SEARCH_LIBS([readline], [readline], [], + AC_MSG_ERROR([could not find readline])) + AC_CONFIG_HEADERS([config.h]) -AC_OUTPUT(Makefile) +AC_OUTPUT(Makefile lib/Makefile src/Makefile test/Makefile help/Makefile)