1 # Process this file with autoconf to produce a configure script.
4 m4_define([gmpc_major_version], [0])
5 m4_define([gmpc_minor_version], [15])
6 m4_define([gmpc_micro_version], [102])
8 m4_define([gmpc_tagline], "Still 100% gnome free.")
9 m4_define([gmpc_website], "http://gmpcwiki.sarine.nl")
10 m4_define([gmpc_bugtracker], "http://gmpcwiki.sarine.nl/index.php/Help:Contents")
12 m4_define([gmpc_version], [gmpc_major_version.gmpc_minor_version.gmpc_micro_version])
15 AM_CONFIG_HEADER([config.h])
16 AM_INIT_AUTOMAKE([gmpc], [gmpc_version],qball@sarine.nl)
19 GMPC_MAJOR_VERSION=gmpc_major_version
20 GMPC_MINOR_VERSION=gmpc_minor_version
21 GMPC_MICRO_VERSION=gmpc_micro_version
22 AC_DEFINE(GMPC_MAJOR_VERSION, gmpc_major_version, ["Major version of gmpc"])
23 AC_DEFINE(GMPC_MINOR_VERSION, gmpc_minor_version, ["Minor version of gmpc"])
24 AC_DEFINE(GMPC_MICRO_VERSION, gmpc_micro_version, ["Micro version of gmpc"])
26 AC_DEFINE(GMPC_TAGLINE, gmpc_tagline, ["Gmpc's tagline"])
27 AC_DEFINE(GMPC_WEBSITE, gmpc_website, ["Gmpc's website"])
28 AC_DEFINE(GMPC_BUGTRACKER, gmpc_bugtracker, ["Gmpc's bugtracker"])
30 # Checks for programs.
33 AC_PROG_INTLTOOL([0.21])
40 AM_CONDITIONAL([INTLTOOL_HIGHER_04000], [test ${INTLTOOL_APPLIED_VERSION_AS_INT} -ge 4000])
42 AM_CONDITIONAL(HAVE_RC, test "x$RC" != "xno")
44 AC_ARG_ENABLE(configdir,
45 [ --enable-configdir Use .config instead of .gmpc or .covers.],
46 [ if test "x$enableval" = "xyes"; then
53 [ --disable-sm Disable Session Support.],
54 [ if test "x$enableval" = "xyes"; then
61 [ --disable-mmkeys Disable multimedia keys support.],
62 [ if test "x$enableval" = "xyes"; then
70 # Checks for libraries.
72 # Checks for header files.
74 AC_CHECK_HEADERS([stdlib.h string.h unistd.h])
76 # Checks for typedefs, structures, and compiler characteristics.
79 AC_SUBST(GLIB_REQUIRED)
80 AC_SUBST(GTK_REQUIRED)
82 # Split this out, because pkgconfig macro doesn't return nicely what is missing
85 PKG_CHECK_MODULES([glib], glib-2.0 >= 2.10)
90 PKG_CHECK_MODULES([gobject], gobject-2.0 >= 2.4)
91 AC_SUBST(gobject_LIBS)
92 AC_SUBST(gobject_CFLAGS)
95 PKG_CHECK_MODULES([gtk], gtk+-2.0 >= 2.12)
100 PKG_CHECK_MODULES([gmodule], gmodule-2.0 >= 2.4)
101 AC_SUBST(gmodule_LIBS)
102 AC_SUBST(gmodule_CFLAGS)
105 PKG_CHECK_MODULES([libmpd], libmpd >= 0.15.98)
106 AC_SUBST(libmpd_LIBS)
107 AC_SUBST(libmpd_CFLAGS)
110 PKG_CHECK_MODULES([libglade], libglade-2.0)
111 AC_SUBST(libglade_LIBS)
112 AC_SUBST(libglade_CFLAGS)
115 PKG_CHECK_MODULES([gthread], gthread-2.0)
116 AC_SUBST(gthread_LIBS)
117 AC_SUBST(gthread_CFLAGS)
121 if test x${enable_sm} = xyes; then
122 PKG_CHECK_MODULES([sm], sm)
125 AC_DEFINE(ENABLE_SM, 1, [Enable Session Support])
129 if test x${enable_mmkeys} = xyes; then
130 AC_DEFINE(ENABLE_MMKEYS, 1, [Enable multimedia support])
132 if test x${enable_configdir} = xyes; then
133 AC_DEFINE(USE_CONFIG_DIR,1, [Use Config Dir])
136 AC_MSG_CHECKING(prefix)
138 if test "x${prefix}" = "xNONE"; then
139 PACKAGE_PREFIX="${ac_default_prefix}"
141 PACKAGE_PREFIX="${prefix}"
143 AC_MSG_RESULT($PACKAGE_PREFIX)
146 dnl please keep them in alphabetical order
147 ALL_LINGUAS="de es fr gl hu it nl nb pl ru sv zh_CN"
150 AC_SUBST(GETTEXT_PACKAGE)
151 AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, "$GETTEXT_PACKAGE",[GMPC gettext package])
155 #AM_GNU_GETTEXT([external])
156 # setting correct paths
157 PACKAGE_LOCALE_DIR="${PACKAGE_PREFIX}/${DATADIRNAME}/locale"
158 AC_DEFINE_UNQUOTED(PACKAGE_LOCALE_DIR,"$PACKAGE_LOCALE_DIR",[The package's locale path for gettext])
161 AC_SUBST(PACKAGE_LOCALE_DIR)
162 AC_SUBST(PACKAGE_LIBS)
169 EXTRA_CFLAGS="-Wmissing-prototypes -Wmissing-declarations"
175 *-*-mingw32* | *-*-windows)
177 EXTRA_CFLAGS="$EXTRA_CFLAGS -mno-cygwin -mwindows -mms-bitfields"
178 EXTRA_LDFLAGS="-export-all-symbols -mwindows -mms-bitfields -lregex" ;;
181 EXTRA_LDFLAGS="-export-all-symbols -mms-bitfields" ;;
183 AM_CONDITIONAL(WIN32, test x$win32 = xyes)
185 AC_SUBST(EXTRA_CFLAGS)
186 AC_SUBST(EXTRA_LDFLAGS)
188 if test x${GOB2} = x""; then
194 AC_PATH_PROG(CURL_CONFIG,curl-config)
196 AC_HELP_STRING([--with-curl=PATH], [where libcurl is installed]),
197 [CURL_CONFIG="${with_curl}/bin/curl-config"])
198 if test -f "${CURL_CONFIG}"; then
199 LDFLAGS="`${CURL_CONFIG} --libs` $LDFLAGS"
200 CPPFLAGS="`${CURL_CONFIG} --cflags` $CPPFLAGS"
202 AC_MSG_WARN([curl-config not found, guessing at libcurl build settings])
204 AC_CHECK_HEADER([curl/curl.h],,AC_MSG_ERROR([unable to find libcurl header files]))
205 AC_CHECK_LIB([curl],[curl_global_init],,AC_MSG_ERROR([unable to link with libcurl]))
208 AC_ARG_ENABLE([maintainermode],
209 [--enable-maintainermode Enable maintainer mode.],
210 [case "${enableval}" in
211 yes) maintainer_mode=true;;
212 no) maintainer_mode=false;;
213 *) AC_MSG_ERROR([bad value ${enableval} for --enable-maintainermode]);;
215 [maintainer_mode=false])
217 AM_CONDITIONAL([MAINTAINER_MODE], [test x$maintainer_mode = xtrue])
230 pixmaps/icons/Makefile
231 pixmaps/icons/16x16/Makefile
232 pixmaps/icons/16x16/actions/Makefile
233 pixmaps/icons/16x16/status/Makefile
234 pixmaps/icons/16x16/apps/Makefile
235 pixmaps/icons/22x22/Makefile
236 pixmaps/icons/22x22/actions/Makefile
237 pixmaps/icons/22x22/status/Makefile
238 pixmaps/icons/22x22/apps/Makefile
239 pixmaps/icons/32x32/Makefile
240 pixmaps/icons/32x32/actions/Makefile
241 pixmaps/icons/32x32/status/Makefile
242 pixmaps/icons/32x32/apps/Makefile
243 pixmaps/icons/48x48/Makefile
244 pixmaps/icons/48x48/actions/Makefile
245 pixmaps/icons/48x48/apps/Makefile
246 pixmaps/icons/scalable/Makefile
247 pixmaps/icons/scalable/actions/Makefile
248 pixmaps/icons/scalable/status/Makefile
249 pixmaps/icons/scalable/apps/Makefile
253 echo "-------------- Status --------------"
254 if test x$maintainer_mode = xtrue; then
255 echo "Maintainer mode is: enabled"
257 echo "Maintainer mode is: disabled"
259 if test x${enable_mmkeys} = xyes; then
260 echo "Multimedia keys support is: enabled"
262 echo "Multimedia keys support is: disabled"
264 if test x${enable_sm} = xyes; then
265 echo "Session Manager support is: enabled"
267 echo "Session Manager support is: disabled"
269 if test x${enable_configdir} = xyes; then
270 echo "Use ~/.config/ for config files: enabled"
272 echo "Use ~/.config/ for config files: disabled"
276 echo "Now type make to build"