X-Git-Url: http://git.cascardo.eti.br/?p=cascardo%2Fdeclara.git;a=blobdiff_plain;f=configure.ac;h=b632a411167b9711b94c6563e38fcd21e23517cc;hp=28039700028d41f4acdb493c0c6f0f593b8f4bb7;hb=5e35cc08b2adfd14da44084cd46fc6edea5a026c;hpb=891f35cb2686c8b6135b42621e4aab9ce6e64e53 diff --git a/configure.ac b/configure.ac index 2803970..b632a41 100644 --- a/configure.ac +++ b/configure.ac @@ -1,8 +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 lib/Makefile src/Makefile test/Makefile) +AC_OUTPUT(Makefile lib/Makefile src/Makefile test/Makefile help/Makefile)