Bump the version number in configure.ac to 1.0.5
[moonshot-ui.git] / configure.ac
1 AC_PREREQ([2.63])
2 AC_INIT([Moonshot-ui],
3         [1.0.5],
4         [moonshot-community@jiscmail.ac.uk],
5         [moonshot-ui],
6         [http://www.project-moonshot.org/])
7
8 # Remove this when we can depend on autoconf >= 2.64
9 AC_SUBST(PACKAGE_URL, [http://www.project-moonshot.org/])
10 AC_DEFINE(PACKAGE_URL,["http://www.project-moonshot.org"],[package URL])
11 AC_CONFIG_HEADERS([config.h])
12 AC_CONFIG_SRCDIR([configure.ac])
13 AC_CONFIG_MACRO_DIR([m4])
14 AC_CONFIG_AUX_DIR([build-aux])
15
16 AM_INIT_AUTOMAKE([1.11 -Wall foreign subdir-objects tar-pax no-dist-gzip dist-xz])
17 AM_SILENT_RULES([yes])
18 AM_MAINTAINER_MODE([enable])
19
20 LT_PREREQ([2.2])
21 LT_INIT([win32-dll])
22 AC_CHECK_FUNCS_ONCE(geteuid getpwuid)
23
24 # Checks for programs.
25 PKG_PROG_PKG_CONFIG([0.23])
26 AC_PROG_CC
27 AM_PROG_CC_C_O
28 AM_PROG_VALAC([0.9])
29
30 # Platform checks
31 AC_CANONICAL_HOST
32
33 case "$host" in
34   *-*-mingw*)
35     win32=yes
36     macos=no
37     linux=no
38     SERVER_IPC_MODULE="msrpc-glib2-1.0"
39     CLIENT_IPC_MODULE="msrpc-mingw-1.0"
40     ;;
41     
42   *darwin*) 
43     win32=no
44     macos=yes
45     linux=no
46
47     # We require dbus-glib for the client library even if we are using GDBus
48     # in the server. The reason we can't always use dbus-glib in the server is
49     # because Vala drops support for it, but as it ships with DBus there is very
50     # little danger of it being dropped by distros any time soon.
51     CLIENT_IPC_MODULE="dbus-glib-1"
52         SERVER_IPC_MODULE="dbus-glib-1"   
53         
54         PKG_CHECK_MODULES([MAC], 
55                         [gtk-mac-integration >= 1.0.1]
56         )
57
58     ;;
59   *)
60     macos=no
61     win32=no
62     linux=yes
63
64     # We require dbus-glib for the client library even if we are using GDBus
65     # in the server. The reason we can't always use dbus-glib in the server is
66     # because Vala drops support for it, but as it ships with DBus there is very
67     # little danger of it being dropped by distros any time soon.
68     CLIENT_IPC_MODULE="dbus-glib-1"
69     PKG_CHECK_MODULES([GDBUS],
70             [gio-2.0 >= 2.26],
71             [SERVER_IPC_MODULE="gio-2.0"],
72             [SERVER_IPC_MODULE="dbus-glib-1"]
73     )
74
75     ;;
76 esac
77
78
79 # For all platforms: Use Gtk+3.0 if available; else revert to Gtk+2.0
80 PKG_CHECK_MODULES([GTK],
81         [gtk+-3.0 >= 3.1],
82         [GTK_VERSION="gtk+-3.0"],
83             [PKG_CHECK_MODULES([GTK],
84                         [gtk+-2.0 >= 2.18],
85                         [GTK_VERSION="gtk+-2.0"]
86             )]                            
87 )
88 AC_SUBST(GTK_VERSION)
89
90
91 # For all platforms: If Log4Vala is enabled, then Use Log4Vala 0.2 if available; else revert to 0.1
92 if [test x$log4vala = xtrue]; then
93 PKG_CHECK_MODULES([LOG4VALA],
94         [log4vala-0.2],
95         [LOG4VALA_VERSION="log4vala-0.2"],
96             [PKG_CHECK_MODULES([LOG4VALA],
97                         [log4vala-0.1],
98                         [LOG4VALA_VERSION="log4vala-0.1"]
99             )]                            
100 )
101 AC_SUBST(LOG4VALA_VERSION)
102 fi
103
104
105 # For all platforms: Use gee-0.8 if available; else revert to gee-1.0
106 # (yes, gee-0.8 is an upgrade from gee-1.0!)
107 PKG_CHECK_MODULES([LIB_GEE],
108         [gee-0.8 >= 0.10.5],
109         [GEE_VERSION="gee-0.8"],
110             [PKG_CHECK_MODULES([LIB_GEE],
111                         [gee-1.0 >= 0.5],
112                         [GEE_VERSION="gee-1.0"]
113             )]                            
114 )
115 AC_SUBST(GEE_VERSION)
116
117 #enable the optional use of Log4Vala (Must have the package installed!)
118 AC_ARG_ENABLE([log4vala],
119 [  --enable-log4vala    Enable use of log4vala for logging],
120 [case "${enableval}" in
121   yes) log4vala=true ;;
122   no)  log4vala=false ;;
123   *) AC_MSG_ERROR([bad value ${enableval} for --enable-log4vala]) ;;
124 esac],[log4vala=false])
125 AM_CONDITIONAL([LOG4VALA], [test x$log4vala = xtrue])
126
127
128 AM_CONDITIONAL([OS_LINUX], [test "$linux" = "yes"])
129 AM_CONDITIONAL([OS_WIN32], [test "$win32" = "yes"])
130 AM_CONDITIONAL([OS_MACOS], [test "$macos" = "yes"])
131
132 AM_CONDITIONAL([IPC_MSRPC], [test "$SERVER_IPC_MODULE" = "msrpc-glib2-1.0"])
133 AM_CONDITIONAL([IPC_DBUS], [test "$SERVER_IPC_MODULE" != "msrpc-glib2-1.0"])
134 AM_CONDITIONAL([IPC_DBUS_GLIB], [test "$SERVER_IPC_MODULE" = "dbus-glib-1"])
135 AM_CONDITIONAL([IPC_GDBUS], [test "$SERVER_IPC_MODULE" = "gio-2.0"])
136
137 vala_version=`$VALAC --version | sed 's/Vala  *//'`
138 AS_VERSION_COMPARE(["$vala_version"], [0.11.1],
139   [gio_vapi_uses_arrays="no"],
140   [gio_vapi_uses_arrays="yes"],
141   [gio_vapi_uses_arrays="yes"])
142 AM_CONDITIONAL([GIO_VAPI_USES_ARRAYS], [test "$gio_vapi_uses_arrays" = "yes"])
143 if test "$SERVER_IPC_MODULE" = "dbus-glib-1"; then
144   AC_MSG_CHECKING([$VALAC is no greater than 0.12.1])
145   AS_VERSION_COMPARE([0.12.2], ["$vala_version"],
146     [vala_supports_dbus_glib="no"],
147     [vala_supports_dbus_glib="no"],
148     [vala_supports_dbus_glib="yes"])
149
150   AC_MSG_RESULT([$vala_supports_dbus_glib])
151   if test "$vala_supports_dbus_glib" = "no"; then
152     AC_MSG_ERROR([
153 *** Vala 0.12.1 or earlier is required for dbus-glib support. Newer versions
154 *** require that you have GLib 2.26 or newer (for GDBus support).])
155   fi
156 fi
157
158 if test "$SERVER_IPC_MODULE" = "msrpc-glib2-1.0"; then
159   # MS RPC utilities
160   AC_PATH_MSRPC_MINGW([0.1.0], :,
161     AC_MSG_ERROR([
162 *** msrpc-mingw 0.1.0 or better is required.]))
163
164   AC_PATH_PROG([MIDL], [midl], no,
165                [/c/Program\ Files/Microsoft\ SDKs/Windows/v7.0/Bin$PATH_SEPARATOR$PATH])
166   if test "$MIDL" = "no"; then
167      AC_MSG_ERROR([
168 *** Could not find the Microsoft interface compiler MIDL.EXE.
169 *** This program is available as part of the MS Windows SDK, in
170 *** the Win32 Development Tools package. If it is not in the PATH
171 *** or its default location you may set the 'MIDL' environment
172 *** variable to point to its location and rerun configure.])
173   fi
174 fi
175
176 if test "$win32" = "yes"; then
177   # Other Windows-specific tools
178
179   # LIB.EXE from MSVC to build an MSVC-compatible import library.
180   AC_PATH_PROG([MSVC_LIB], [lib], no,
181                [/c/Program\ Files/Microsoft\ Visual\ Studio\ 9.0/VC/bin$PATH_SEPARATOR/c/Program\ Files\ \(x86\)/Microsoft\ Visual\ Studio\ 9.0/VC/bin$PATH_SEPARATOR$PATH])
182
183   if test "$MSVC_LIB" = "no"; then
184      AC_MSG_WARN([
185 *** Could not find the Microsoft 'LIB.EXE' program. This is required
186 *** to build the Visual C import library for libmoonshot. Use the
187 *** MSVC_LIB environment variable to pass its location if this is
188 *** outside the PATH.])
189   fi
190
191
192   # ImageMagick for the 'make icons' target. Note that
193   # c:/windows/system32/convert.exe is nothing to do with ImageMagick.
194   AC_PATH_PROG([IMAGEMAGICK_CONVERT], [convert], no,
195                [/c/Program\ Files/ImageMagick$PATH_SEPARATOR/c/Program\ Files\ \(x86\)/ImageMagick$PATH_SEPARATOR$PATH])
196
197   if test "$IMAGEMAGICK_CONVERT" = "no" || test "$IMAGEMAGICK_CONVERT" = "/c/windows/system32/convert"; then
198      AC_MSG_WARN([
199 *** Could not find ImageMagick convert.exe. This is required for the
200 *** 'make icons' target. Use the IMAGEMAGICK_CONVERT environment
201 *** variable to pass its location if this is outside the PATH.])
202   fi
203
204
205   # Windows Installer XML tools
206   AC_PATH_PROG([WIX_CANDLE], [candle], no,
207                [/c/Program\ Files/Windows\ Installer\ XML\ v3.5/bin$PATH_SEPARATOR/c/Program\ Files\ \(x86\)/Windows\ Installer\ XML\ v3.5/bin$PATH_SEPARATOR$PATH])
208   AC_PATH_PROG([WIX_LIGHT], [light], no,
209                [/c/Program\ Files/Windows\ Installer\ XML\ v3.5/bin$PATH_SEPARATOR/c/Program\ Files\ \(x86\)/Windows\ Installer\ XML\ v3.5/bin$PATH_SEPARATOR$PATH])
210
211   if test "$WIX_CANDLE" = "no" || test "$WIX_LIGHT" = "no"; then
212      AC_MSG_WARN([
213 *** Could not find the Windows Installer XML tools. These are required
214 *** for the 'make installer' target. Use the WIX_CANDLE and WIX_LIGHT
215 *** environment variables to pass their locations if they are outside
216 *** the PATH.])
217   fi
218 fi
219
220 if test "$linux" = "yes"; then
221   AC_PATH_PROG([UPDATE_MIME_DATABASE], [update-mime-database], [no])
222   if test "$UPDATE_MIME_DATABASE" = "no"; then
223     AC_MSG_ERROR([
224 *** Could not find the Freedesktop.org  mime database update tool.
225 *** Web provisioning files could not be automatically installed.])
226   fi
227   AC_PATH_PROG([UPDATE_DESKTOP_DATABASE], [update-desktop-database], [no])
228   if test "$UPDATE_DESKTOP_DATABASE" = "no"; then
229     AC_MSG_ERROR([
230 *** Could not find the Freedesktop.org desktop entry database update
231 *** tool. Web provisioning files could not be automatically installed.])
232   fi
233 fi
234
235 MOONSHOT_APP="$bindir/moonshot"
236 MOONSHOT_WEBP="$bindir/moonshot-webp"
237
238 AC_SUBST(MIDL)
239 AC_SUBST(MSVC_LIB)
240 AC_SUBST(IMAGEMAGICK_CONVERT)
241 AC_SUBST(WIX_CANDLE)
242 AC_SUBST(WIX_LIGHT)
243 AC_SUBST(UPDATE_MIME_DATABASE)
244 AC_SUBST(UPDATE_DESKTOP_DATABASE)
245 AC_SUBST(MOONSHOT_APP)
246 AC_SUBST(MOONSHOT_WEBP)
247
248 # Dependencies
249 PKG_CHECK_MODULES(moonshot,[
250         atk >= 1.20
251         glib-2.0 >= 2.22
252         gobject-2.0 >= 2.22
253         libssl
254         $GTK_VERSION
255         $GEE_VERSION
256         $SERVER_IPC_MODULE
257                 $MAC
258 ])
259
260 PKG_CHECK_MODULES(libmoonshot,[
261         $CLIENT_IPC_MODULE
262 ])
263
264 # i18n stuff
265 AM_GNU_GETTEXT([external])
266 AM_GNU_GETTEXT_VERSION([0.17])
267
268 AC_SUBST([GETTEXT_PACKAGE],[PACKAGE_TARNAME])
269 AC_DEFINE([GETTEXT_PACKAGE],[PACKAGE_TARNAME],[Define to the gettext package name.])
270
271 AC_CONFIG_FILES([
272         Makefile
273         po/Makefile.in
274         moonshot.desktop
275         moonshot-webp.desktop
276         moonshot-ui.spec
277 ])
278
279 AC_OUTPUT