annotate acinclude.m4 @ 4540:956272f5935d

Synchronized acinclude common macros with upcoming audacious-plugins autoconf cleanup.
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 12 May 2008 00:14:27 +0300
parents 1f0aa82891a5
children 07a5687a90b0
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4475
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
1
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
2 dnl ** ADD_PKG_REQUIRES([requirement])
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
3 AC_DEFUN([ADD_PC_REQUIRES], [
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
4 if test "x$PC_REQUIRES" = "x"; then
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
5 PC_REQUIRES="$1"
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
6 else
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
7 PC_REQUIRES="$PC_REQUIRES, $1"
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
8 fi
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
9 AC_SUBST([PC_REQUIRES])
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
10 ])
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
11
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
12
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
13 dnl ** Like PKG_CHECK_MODULES, but provides an informative error message.
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
14 dnl ** AUD_CHECK_MODULE([define name], [module], [version required],
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
15 dnl ** [informational name], [additional error message])
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
16 dnl **
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
17 dnl ** AUD_CHECK_MODULE([GLIB], [gtk+-2.0], [>= 2.10.0], [Gtk+2], [See http://www.gtk.org/])
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
18 AC_DEFUN([AUD_CHECK_MODULE], [
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
19 PKG_CHECK_MODULES([$1], [$2 $3], [
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
20 ADD_PC_REQUIRES([$2 $3])
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
21 ],[
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
22 PKG_CHECK_EXISTS([$2], [
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
23 cv_pkg_version=`$PKG_CONFIG --modversion "$2" 2>/dev/null`
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
24 AC_MSG_ERROR([[
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
25 $4 version $cv_pkg_version was found, but $2 $3 is required.
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
26 $5]])
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
27 ],[
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
28 AC_MSG_ERROR([[
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
29 Cannot find $4! If you are using binary packages based system, check that you
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
30 have the corresponding -dev/devel packages installed.
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
31 $5]])
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
32 ])
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
33 ])
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
34 ])
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
35
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
36
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
37 dnl ** Simplifying wrapper
4485
1f0aa82891a5 Fix AUD_CONDITIONAL to work as expected; we need the values defined for AC_SUBST to actually substitute them.
Matti Hamalainen <ccr@tnsp.org>
parents: 4479
diff changeset
38 AC_DEFUN([AUD_CONDITIONAL],
1f0aa82891a5 Fix AUD_CONDITIONAL to work as expected; we need the values defined for AC_SUBST to actually substitute them.
Matti Hamalainen <ccr@tnsp.org>
parents: 4479
diff changeset
39 [if test "x${$2}" = m4_ifval([$3], ["x$3"],["xyes"]) ; then
1f0aa82891a5 Fix AUD_CONDITIONAL to work as expected; we need the values defined for AC_SUBST to actually substitute them.
Matti Hamalainen <ccr@tnsp.org>
parents: 4479
diff changeset
40 $1="yes"
1f0aa82891a5 Fix AUD_CONDITIONAL to work as expected; we need the values defined for AC_SUBST to actually substitute them.
Matti Hamalainen <ccr@tnsp.org>
parents: 4479
diff changeset
41 else
1f0aa82891a5 Fix AUD_CONDITIONAL to work as expected; we need the values defined for AC_SUBST to actually substitute them.
Matti Hamalainen <ccr@tnsp.org>
parents: 4479
diff changeset
42 $1="no"
1f0aa82891a5 Fix AUD_CONDITIONAL to work as expected; we need the values defined for AC_SUBST to actually substitute them.
Matti Hamalainen <ccr@tnsp.org>
parents: 4479
diff changeset
43 fi
4479
bb5d11a735a0 Perform AC_SUBST() for each AUD_CONDITIONAL().
Matti Hamalainen <ccr@tnsp.org>
parents: 4475
diff changeset
44 AC_SUBST([$1])dnl
bb5d11a735a0 Perform AC_SUBST() for each AUD_CONDITIONAL().
Matti Hamalainen <ccr@tnsp.org>
parents: 4475
diff changeset
45 ])
4475
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
46
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
47
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
48 dnl ** Simple wrapper for AC_ARG_ENABLE
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
49 dnl ** AUD_ARG_ENABLE([name], [default value], [help string], [if enabled], [if disabled])
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
50 AC_DEFUN([AUD_ARG_ENABLE], [dnl
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
51 define([Name], [translit([$1], [./-], [___])])
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
52 AC_ARG_ENABLE([$1], [$3],, [enable_[]Name=$2])
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
53 if test "x${enable_[]Name}" = "xyes"; then
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
54 m4_ifvaln([$4], [$4], [:])dnl
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
55 m4_ifvaln([$5], [else $5])dnl
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
56 fi
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
57 ])
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
58
0
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
59
4475
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
60 AC_DEFUN([AUD_ARG_SIMPLE], [dnl
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
61 define([Name], [translit([$1], [./-], [___])])
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
62 AC_ARG_ENABLE([$1], [$3],, [enable_[]Name=$2])
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
63 if test "x${enable_[]Name}" = "xyes"; then
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
64 AC_DEFINE([$4], [$5], [$6])
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
65 fi
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
66 AUD_CONDITIONAL([$4], [enable_$1])
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
67 AC_SUBST([$4])
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
68 ])
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
69
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
70
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
71 dnl ** Wrapper for cached compilation check
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
72 dnl ** AUD_TRY_COMPILE([message], [result variable], [includes], [body], [if ok], [if not ok])
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
73 AC_DEFUN([AUD_TRY_COMPILE], [dnl
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
74 AC_CACHE_CHECK([$1], [$2],
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
75 [AC_TRY_COMPILE([$3], [$4], [$2="yes"], [$2="no"])])
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
76 if test "x${$2}" = "xyes"; then
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
77 m4_ifvaln([$5], [$5], [:])dnl
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
78 m4_ifvaln([$6], [else $6])dnl
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
79 fi
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
80 ])
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
81
32
8aee6a5bcc70 [svn] Libmikmod.
nenolod
parents: 0
diff changeset
82
4475
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
83 dnl ** Check for GNU make
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
84 AC_DEFUN([AUD_CHECK_GNU_MAKE],[
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
85 AC_CACHE_CHECK([for GNU make],aud_gnu_make_command,[
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
86 aud_gnu_make_command=""
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
87 for a in "$MAKE" make gmake gnumake; do
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
88 test "x$a" = "x" && continue
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
89 if ( sh -c "$a --version" 2>/dev/null | grep "GNU Make" >/dev/null ) ; then
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
90 aud_gnu_make_command="$a"
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
91 break
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
92 fi
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
93 done
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
94 ])
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
95 if test "x$aud_gnu_make_command" != "x" ; then
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
96 MAKE="$aud_gnu_make_command"
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
97 else
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
98 AC_MSG_ERROR([** GNU make not found. If it is installed, try setting MAKE environment variable. **])
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
99 fi
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
100 AC_SUBST([MAKE])
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
101 ])
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
102
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
103
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
104 dnl *** Define plugin directories
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
105 AC_DEFUN([AUD_DEFINE_PLUGIN_DIR],[
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
106 define([Name], [translit([$1], [a-z], [A-Z])])dnl
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
107 if test "x$enable_one_plugin_dir" = "xyes"; then
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
108 ifdef([aud_plugin_dirs_defined],[],
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
109 [ pluginsubs="\\\"Plugins\\\""
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
110 ])dnl
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
111 Name[]_PLUGIN_DIR="Plugins"
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
112 else
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
113 ifdef([aud_plugin_dirs_defined],
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
114 [pluginsubs="$pluginsubs,\\\"$1\\\""],
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
115 [pluginsubs="\\\"$1\\\""])
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
116 Name[]_PLUGIN_DIR="$1"
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
117 fi
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
118 AC_SUBST(Name[]_PLUGIN_DIR)dnl
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
119 define([aud_plugin_dirs_defined],[1])dnl
40f998ddd0a4 Various new helper macros added for simplifying and sanitizing configure.ac.
Matti Hamalainen <ccr@tnsp.org>
parents: 83
diff changeset
120 ])dnl
4540
956272f5935d Synchronized acinclude common macros with upcoming audacious-plugins autoconf cleanup.
Matti Hamalainen <ccr@tnsp.org>
parents: 4485
diff changeset
121
956272f5935d Synchronized acinclude common macros with upcoming audacious-plugins autoconf cleanup.
Matti Hamalainen <ccr@tnsp.org>
parents: 4485
diff changeset
122
956272f5935d Synchronized acinclude common macros with upcoming audacious-plugins autoconf cleanup.
Matti Hamalainen <ccr@tnsp.org>
parents: 4485
diff changeset
123 dnl ***
956272f5935d Synchronized acinclude common macros with upcoming audacious-plugins autoconf cleanup.
Matti Hamalainen <ccr@tnsp.org>
parents: 4485
diff changeset
124 dnl *** Common checks
956272f5935d Synchronized acinclude common macros with upcoming audacious-plugins autoconf cleanup.
Matti Hamalainen <ccr@tnsp.org>
parents: 4485
diff changeset
125 dnl ***
956272f5935d Synchronized acinclude common macros with upcoming audacious-plugins autoconf cleanup.
Matti Hamalainen <ccr@tnsp.org>
parents: 4485
diff changeset
126 AC_DEFUN([AUD_COMMON_PROGS], [
956272f5935d Synchronized acinclude common macros with upcoming audacious-plugins autoconf cleanup.
Matti Hamalainen <ccr@tnsp.org>
parents: 4485
diff changeset
127
956272f5935d Synchronized acinclude common macros with upcoming audacious-plugins autoconf cleanup.
Matti Hamalainen <ccr@tnsp.org>
parents: 4485
diff changeset
128 dnl Check for C and C++ compilers
956272f5935d Synchronized acinclude common macros with upcoming audacious-plugins autoconf cleanup.
Matti Hamalainen <ccr@tnsp.org>
parents: 4485
diff changeset
129 dnl =============================
956272f5935d Synchronized acinclude common macros with upcoming audacious-plugins autoconf cleanup.
Matti Hamalainen <ccr@tnsp.org>
parents: 4485
diff changeset
130 AUD_CHECK_GNU_MAKE
956272f5935d Synchronized acinclude common macros with upcoming audacious-plugins autoconf cleanup.
Matti Hamalainen <ccr@tnsp.org>
parents: 4485
diff changeset
131 AC_PROG_CC
956272f5935d Synchronized acinclude common macros with upcoming audacious-plugins autoconf cleanup.
Matti Hamalainen <ccr@tnsp.org>
parents: 4485
diff changeset
132 AC_PROG_CXX
956272f5935d Synchronized acinclude common macros with upcoming audacious-plugins autoconf cleanup.
Matti Hamalainen <ccr@tnsp.org>
parents: 4485
diff changeset
133 AM_PROG_AS
956272f5935d Synchronized acinclude common macros with upcoming audacious-plugins autoconf cleanup.
Matti Hamalainen <ccr@tnsp.org>
parents: 4485
diff changeset
134 AC_ISC_POSIX
956272f5935d Synchronized acinclude common macros with upcoming audacious-plugins autoconf cleanup.
Matti Hamalainen <ccr@tnsp.org>
parents: 4485
diff changeset
135 AC_C_BIGENDIAN
956272f5935d Synchronized acinclude common macros with upcoming audacious-plugins autoconf cleanup.
Matti Hamalainen <ccr@tnsp.org>
parents: 4485
diff changeset
136
956272f5935d Synchronized acinclude common macros with upcoming audacious-plugins autoconf cleanup.
Matti Hamalainen <ccr@tnsp.org>
parents: 4485
diff changeset
137 if test "x$GCC" = "xyes"; then
956272f5935d Synchronized acinclude common macros with upcoming audacious-plugins autoconf cleanup.
Matti Hamalainen <ccr@tnsp.org>
parents: 4485
diff changeset
138 CFLAGS="$CFLAGS -Wall -pipe"
956272f5935d Synchronized acinclude common macros with upcoming audacious-plugins autoconf cleanup.
Matti Hamalainen <ccr@tnsp.org>
parents: 4485
diff changeset
139 CXXFLAGS="$CXXFLAGS -pipe -Wall"
956272f5935d Synchronized acinclude common macros with upcoming audacious-plugins autoconf cleanup.
Matti Hamalainen <ccr@tnsp.org>
parents: 4485
diff changeset
140 fi
956272f5935d Synchronized acinclude common macros with upcoming audacious-plugins autoconf cleanup.
Matti Hamalainen <ccr@tnsp.org>
parents: 4485
diff changeset
141
956272f5935d Synchronized acinclude common macros with upcoming audacious-plugins autoconf cleanup.
Matti Hamalainen <ccr@tnsp.org>
parents: 4485
diff changeset
142 dnl Checks for various programs
956272f5935d Synchronized acinclude common macros with upcoming audacious-plugins autoconf cleanup.
Matti Hamalainen <ccr@tnsp.org>
parents: 4485
diff changeset
143 dnl ===========================
956272f5935d Synchronized acinclude common macros with upcoming audacious-plugins autoconf cleanup.
Matti Hamalainen <ccr@tnsp.org>
parents: 4485
diff changeset
144 AC_PROG_LN_S
956272f5935d Synchronized acinclude common macros with upcoming audacious-plugins autoconf cleanup.
Matti Hamalainen <ccr@tnsp.org>
parents: 4485
diff changeset
145 AC_PROG_MAKE_SET
956272f5935d Synchronized acinclude common macros with upcoming audacious-plugins autoconf cleanup.
Matti Hamalainen <ccr@tnsp.org>
parents: 4485
diff changeset
146 AC_PATH_PROG([RM], [rm])
956272f5935d Synchronized acinclude common macros with upcoming audacious-plugins autoconf cleanup.
Matti Hamalainen <ccr@tnsp.org>
parents: 4485
diff changeset
147 AC_PATH_PROG([MV], [mv])
956272f5935d Synchronized acinclude common macros with upcoming audacious-plugins autoconf cleanup.
Matti Hamalainen <ccr@tnsp.org>
parents: 4485
diff changeset
148 AC_PATH_PROG([CP], [cp])
956272f5935d Synchronized acinclude common macros with upcoming audacious-plugins autoconf cleanup.
Matti Hamalainen <ccr@tnsp.org>
parents: 4485
diff changeset
149 AC_PATH_PROG([AR], [ar])
956272f5935d Synchronized acinclude common macros with upcoming audacious-plugins autoconf cleanup.
Matti Hamalainen <ccr@tnsp.org>
parents: 4485
diff changeset
150 AC_PATH_PROG([RANLIB], [ranlib])
956272f5935d Synchronized acinclude common macros with upcoming audacious-plugins autoconf cleanup.
Matti Hamalainen <ccr@tnsp.org>
parents: 4485
diff changeset
151
956272f5935d Synchronized acinclude common macros with upcoming audacious-plugins autoconf cleanup.
Matti Hamalainen <ccr@tnsp.org>
parents: 4485
diff changeset
152
956272f5935d Synchronized acinclude common macros with upcoming audacious-plugins autoconf cleanup.
Matti Hamalainen <ccr@tnsp.org>
parents: 4485
diff changeset
153 dnl Check for Gtk+/GLib and pals
956272f5935d Synchronized acinclude common macros with upcoming audacious-plugins autoconf cleanup.
Matti Hamalainen <ccr@tnsp.org>
parents: 4485
diff changeset
154 dnl ============================
956272f5935d Synchronized acinclude common macros with upcoming audacious-plugins autoconf cleanup.
Matti Hamalainen <ccr@tnsp.org>
parents: 4485
diff changeset
155 AUD_CHECK_MODULE([GLIB], [glib-2.0], [>= 2.14.0], [Glib2])
956272f5935d Synchronized acinclude common macros with upcoming audacious-plugins autoconf cleanup.
Matti Hamalainen <ccr@tnsp.org>
parents: 4485
diff changeset
156 AUD_CHECK_MODULE([GTHREAD], [gthread-2.0], [>= 2.14.0], [gthread-2.0])
956272f5935d Synchronized acinclude common macros with upcoming audacious-plugins autoconf cleanup.
Matti Hamalainen <ccr@tnsp.org>
parents: 4485
diff changeset
157 AUD_CHECK_MODULE([GTK], [gtk+-2.0], [>= 2.10.0], [Gtk+2])
956272f5935d Synchronized acinclude common macros with upcoming audacious-plugins autoconf cleanup.
Matti Hamalainen <ccr@tnsp.org>
parents: 4485
diff changeset
158 AUD_CHECK_MODULE([PANGO], [pango], [>= 1.8.0], [Pango])
956272f5935d Synchronized acinclude common macros with upcoming audacious-plugins autoconf cleanup.
Matti Hamalainen <ccr@tnsp.org>
parents: 4485
diff changeset
159 AUD_CHECK_MODULE([CAIRO], [cairo], [>= 1.2.4], [Cairo])
956272f5935d Synchronized acinclude common macros with upcoming audacious-plugins autoconf cleanup.
Matti Hamalainen <ccr@tnsp.org>
parents: 4485
diff changeset
160
956272f5935d Synchronized acinclude common macros with upcoming audacious-plugins autoconf cleanup.
Matti Hamalainen <ccr@tnsp.org>
parents: 4485
diff changeset
161
956272f5935d Synchronized acinclude common macros with upcoming audacious-plugins autoconf cleanup.
Matti Hamalainen <ccr@tnsp.org>
parents: 4485
diff changeset
162 dnl Check for libmowgli
956272f5935d Synchronized acinclude common macros with upcoming audacious-plugins autoconf cleanup.
Matti Hamalainen <ccr@tnsp.org>
parents: 4485
diff changeset
163 dnl ===================
956272f5935d Synchronized acinclude common macros with upcoming audacious-plugins autoconf cleanup.
Matti Hamalainen <ccr@tnsp.org>
parents: 4485
diff changeset
164 AUD_CHECK_MODULE([MOWGLI], [libmowgli], [>= 0.4.0], [libmowgli],
956272f5935d Synchronized acinclude common macros with upcoming audacious-plugins autoconf cleanup.
Matti Hamalainen <ccr@tnsp.org>
parents: 4485
diff changeset
165 [http://www.atheme.org/projects/mowgli.shtml])
956272f5935d Synchronized acinclude common macros with upcoming audacious-plugins autoconf cleanup.
Matti Hamalainen <ccr@tnsp.org>
parents: 4485
diff changeset
166
956272f5935d Synchronized acinclude common macros with upcoming audacious-plugins autoconf cleanup.
Matti Hamalainen <ccr@tnsp.org>
parents: 4485
diff changeset
167
956272f5935d Synchronized acinclude common macros with upcoming audacious-plugins autoconf cleanup.
Matti Hamalainen <ccr@tnsp.org>
parents: 4485
diff changeset
168 dnl Check for libmcs
956272f5935d Synchronized acinclude common macros with upcoming audacious-plugins autoconf cleanup.
Matti Hamalainen <ccr@tnsp.org>
parents: 4485
diff changeset
169 dnl ================
956272f5935d Synchronized acinclude common macros with upcoming audacious-plugins autoconf cleanup.
Matti Hamalainen <ccr@tnsp.org>
parents: 4485
diff changeset
170 AUD_CHECK_MODULE([LIBMCS], [libmcs >= 0.7], [libmcs],
956272f5935d Synchronized acinclude common macros with upcoming audacious-plugins autoconf cleanup.
Matti Hamalainen <ccr@tnsp.org>
parents: 4485
diff changeset
171 [http://www.atheme.org/projects/mcs.shtml])
956272f5935d Synchronized acinclude common macros with upcoming audacious-plugins autoconf cleanup.
Matti Hamalainen <ccr@tnsp.org>
parents: 4485
diff changeset
172 ])