Ease new version release process by auto-adjusting flags (-Werror)
[jack_mixer.git] / configure.ac
blobf7df0cb87330a2b18784d9ec952230622adb5e8b
1 # -*- Autoconf -*-
2 # Process this file with autoconf to produce a configure script.
4 # This file is part of jack_mixer
6 # Copyright (C) 2007 Nedko Arnaudov <nedko@arnaudov.name>
8 # This program is free software; you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; version 2 of the License
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with this program; if not, write to the Free Software
19 # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
22 AC_PREREQ(2.61)
23 AC_INIT(jack_mixer, dev)
24 AC_CONFIG_AUX_DIR(config)
25 AM_INIT_AUTOMAKE
26 AC_CONFIG_HEADER([config.h])
28 # not real check but hack (because version is not parameter to configure script) to detect development version
29 AM_CONDITIONAL(DEV_VERSION, test $VERSION = dev)
31 AC_SUBST(DATADIR)
33 # Checks for programs.
34 AC_PROG_CC
35 AC_DISABLE_STATIC
36 AC_PROG_LIBTOOL
38 # Checks for libraries.
40 PKG_CHECK_MODULES(JACK, jack)
42 # JACK MIDI
43 have_jackmidi="unknown"
44 AC_ARG_ENABLE(jackmidi, [AS_HELP_STRING(--disable-jackmidi, [Force disable JACK MIDI support [default=no]])], [ have_jackmidi="no (disabled)" ])
45 if test "$have_jackmidi" = "unknown"
46 then
47   have_jackmidi="no"
48   PKG_CHECK_MODULES(JACK_MIDI, jack >= 0.102.0, AC_DEFINE([HAVE_JACK_MIDI], [], [Defined if we have JACK MIDI support.]) have_jackmidi="yes")
49   if test "$have_jackmidi" = "yes"
50   then
51     PKG_CHECK_MODULES(OLD_JACK_MIDI, jack < 0.102.27, have_jackmidi="yes (old one)" AC_DEFINE(HAVE_OLD_JACK_MIDI, 1, [whether or not we building against old JACK MIDI (0.102.20)]), echo no)
52   fi
55 AM_CONDITIONAL(HAVE_JACK_MIDI, test "$have_jackmidi" = "yes" -o "$have_jackmidi" = "yes (old one)")
57 if test "$have_jackmidi" = "no"
58 then
59   AC_MSG_WARN([Your JACK is missing MIDI support.])
62 if test "$have_jackmidi" = "yes" -o "$have_jackmidi" = "yes (old one)"
63 then
64   AC_JACK_MIDI_NFRAMES_CHECK()
65   if test "$jackmidi_nframes" = "yes"
66   then
67     AC_DEFINE([JACK_MIDI_NEEDS_NFRAMES], 1, [Defined if we JACK MIDI functions need nframes parameter.])
68   fi
71 # Python checking
72 AM_PATH_PYTHON(2.4)
73 AM_CHECK_PYTHON_HEADERS(,[AC_MSG_ERROR(Could not find Python headers)])
74 #AS_AC_EXPAND(PYTHONDIR, $pythondir)
75 #AC_SUBST(PYTHONDIR)
77 AC_ARG_ENABLE(pymod-checks, [AS_HELP_STRING(--disable-pymod-checks, [Force disable checks for Python modules required at run time])], [ disable_pymod_checks="yes" ], [ disable_pymod_checks="no" ])
79 if test "$disable_pymod_checks" != "yes"
80 then
81   AM_CHECK_PYMOD(gtk,,,[AC_MSG_ERROR(Could not find PyGTK)])
82   AM_CHECK_PYMOD(cairo,,,[AC_MSG_ERROR(Could not find Pycairo)])
83   AM_CHECK_PYMOD(fpconst,,,[AC_MSG_ERROR(Could not find fpconst Python module)])
84 else
85   AC_MSG_WARN([Checks for python modules required runtime have been force disabled])
88 AC_PATH_PROG(GCONFTOOL, gconftool-2, no)
89 AM_GCONF_SOURCE_2
91 AC_CONFIG_FILES([Makefile])
92 AC_OUTPUT
94 AC_MSG_RESULT([])
95 AC_MSG_RESULT([**********************************************************************])
96 AC_MSG_RESULT([])
97 AC_MSG_RESULT([Prefix:            $prefix])
98 AC_MSG_RESULT([Python dir:        $pythondir])
99 #AC_MSG_RESULT([GConf schema dir:  $GCONF_SCHEMA_FILE_DIR])
100 AC_MSG_RESULT([])
101 AC_MSG_RESULT([MIDI support:      $have_jackmidi])
102 AC_MSG_RESULT([])
103 AC_MSG_RESULT([**********************************************************************])
104 AC_MSG_RESULT([])