]> Pileus Git - aweather/blob - configure.ac
9e072af321ae65197a74f8958d6f45f8d77c1648
[aweather] / configure.ac
1 # Init and options
2 AC_INIT([aweather], [0.6], [andy753421@gmail.com])
3 AM_INIT_AUTOMAKE([-Wall -Werror -Wno-portability foreign])
4 AC_CONFIG_HEADERS([config.h])
5 AC_CONFIG_MACRO_DIR([m4])
6 #AM_SILENT_RULES([yes])
7
8 # Check for required programs
9 AC_PROG_CC
10 LT_PROG_RC
11 AC_PROG_LIBTOOL
12 DOLT
13 PKG_PROG_PKG_CONFIG
14
15 # Check for required packages
16 PKG_CHECK_MODULES(GLIB,  glib-2.0)
17 PKG_CHECK_MODULES(GRITS, grits >= 0.6)
18
19 # Define odd RSL install location
20 AC_CHECK_LIB(rsl, RSL_wsr88d_to_radar, RSL_LIBS="-lrsl")
21 AM_CONDITIONAL(HAVE_RSL, test "$RSL_LIBS" != "")
22 AC_SUBST(RSL_LIBS)
23
24 # Test for Windows vs. Unix
25 case "${host}" in
26         *mingw32*) WIN32="yes" ;;
27         *)         WIN32="no"  ;;
28 esac
29 if test "$WIN32" = yes; then
30         ac_default_prefix="/"
31 fi
32 AM_CONDITIONAL([WIN32], test "$WIN32" = "yes")
33
34 # Output 
35 AC_CONFIG_FILES([
36         Makefile
37         src/Makefile
38         src/resource.rc
39         src/plugins/Makefile
40         data/Makefile
41         data/main.ui
42         docs/Makefile
43 ])
44 AC_OUTPUT
45
46 # Print status messages
47 if test "$RSL_LIBS" = ""; then
48         echo " ** Warning, RSL not found, radar plugin disabled"
49 fi