X-Git-Url: http://pileus.org/git/?a=blobdiff_plain;f=configure.ac;h=8a02052a3e070ac7f18c71daf226e6530ccbc532;hb=471f4eca512e1f7d785cecb7a4df24824346efeb;hp=da6af3d84fafc66a39b61ef66f8ab2a4e109064d;hpb=8206ff11b5450e27909f6867adbff8f6d051c315;p=aweather diff --git a/configure.ac b/configure.ac index da6af3d..8a02052 100644 --- a/configure.ac +++ b/configure.ac @@ -1,9 +1,36 @@ -AC_INIT([aweather], [0.1], [spenceal@rose-hulman.edu]) -AM_INIT_AUTOMAKE([-Wall -Werror foreign]) -AC_PROG_CC +# Init and options +AC_INIT([aweather], [0.3], [andy753421@gmail.com]) +AM_INIT_AUTOMAKE([-Wall -Werror -Wno-portability foreign]) AC_CONFIG_HEADERS([config.h]) +AC_CONFIG_MACRO_DIR([m4]) +#AM_SILENT_RULES([yes]) + +# Check for required programs +AC_PROG_CC +AC_PROG_LIBTOOL +PKG_PROG_PKG_CONFIG + +# Check for required packages +PKG_CHECK_MODULES(GLIB, glib-2.0) +PKG_CHECK_MODULES(GIS, libgis = $VERSION) + +# Define odd RSL install location +AC_CHECK_LIB(rsl, RSL_wsr88d_to_radar, RSL_LIBS="-lrsl") +AM_CONDITIONAL(HAVE_RSL, test "$RSL_LIBS" != "") +AC_SUBST(RSL_LIBS) + +# Output AC_CONFIG_FILES([ Makefile src/Makefile + src/plugins/Makefile + data/Makefile + data/main.ui + docs/Makefile ]) AC_OUTPUT + +# Print status messages +if test "$RSL_LIBS" = ""; then + echo " ** Warning, RSL not found, radar plugin disabled" +fi