configure.ac: Convert to new AG_GST style.
[platform/upstream/gstreamer.git] / configure.ac
1 AC_PREREQ(2.52)
2
3 dnl initialize autoconf
4 dnl when going to/from release please set the nano (fourth number) right !
5 dnl releases only do Wall, cvs and prerelease does Werror too
6 AC_INIT(GStreamer FFMpeg, 0.10.2.1,
7     http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer,
8     gst-ffmpeg)
9
10 AG_GST_INIT
11
12 dnl initialize automake
13 AM_INIT_AUTOMAKE
14
15 dnl define PACKAGE_VERSION_* variables
16 AS_VERSION
17
18 dnl check if this is a release version
19 AS_NANO(GST_CVS="no", GST_CVS="yes")
20
21 dnl can autoconf find the source ?
22 AC_CONFIG_SRCDIR([ext/ffmpeg/gstffmpeg.c])
23
24 dnl define the output header for config
25 AM_CONFIG_HEADER([config.h])
26
27 dnl AM_MAINTAINER_MODE only provides the option to configure to enable it
28 AM_MAINTAINER_MODE
29
30 dnl sets host_* variables
31 AC_CANONICAL_HOST
32
33 dnl our libraries and install dirs use major.minor as a version
34 GST_MAJORMINOR=$PACKAGE_VERSION_MAJOR.$PACKAGE_VERSION_MINOR
35 dnl we override it here if we need to for the release candidate of new series
36 GST_MAJORMINOR=0.10
37 AC_SUBST(GST_MAJORMINOR)
38
39 AM_PROG_LIBTOOL
40
41 dnl *** required versions of GStreamer stuff ***
42 GST_REQ=0.10.4
43 LIBOIL_MAJORMINOR=0.3
44 LIBOIL_REQ=0.3.6
45
46 dnl *** autotools stuff ****
47
48 dnl allow for different autotools
49 AS_AUTOTOOLS_ALTERNATE
50
51 dnl Add parameters for aclocal
52 AC_SUBST(ACLOCAL_AMFLAGS, "-I m4 -I common/m4")
53
54 dnl *** check for arguments to configure ***
55
56 AG_GST_ARG_WITH_PACKAGE_NAME
57 AG_GST_ARG_WITH_PACKAGE_ORIGIN
58 AG_GST_ARG_VALGRIND
59
60 dnl *** checks for platform ***
61
62 dnl * hardware/architecture *
63
64 dnl common/m4/gst-arch.m4
65 dnl check CPU type
66 AG_GST_ARCH
67
68 dnl *** checks for programs ***
69
70 dnl find a compiler
71 AC_PROG_CC
72
73 # FIXME: are these two lines needed ?
74 AM_PROG_CC_STDC
75 AS="${CC}"
76
77 AC_PATH_PROG(VALGRIND_PATH, valgrind, no)
78 AM_CONDITIONAL(HAVE_VALGRIND, test ! "x$VALGRIND_PATH" = "xno")
79
80 dnl check for documentation tools
81 GTK_DOC_CHECK([1.3])
82 AS_PATH_PYTHON([2.1])
83
84 dnl *** checks for libraries ***
85
86 dnl *** checks for header files ***
87
88 dnl check if we have ANSI C header files
89 AC_HEADER_STDC
90
91 dnl *** checks for types/defines ***
92
93 dnl *** checks for structures ***
94
95 dnl *** checks for compiler characteristics ***
96
97 dnl *** checks for library functions ***
98
99 dnl *** checks for dependancy libraries ***
100
101 dnl checks for gstreamer
102 dnl uninstalled is selected preferentially -- see pkg-config(1)
103 AG_GST_CHECK_GST($GST_MAJORMINOR, [$GST_REQ])
104 AG_GST_CHECK_GST_BASE($GST_MAJORMINOR, [$GST_REQ])
105 AG_GST_CHECK_GST_PLUGINS_BASE($GST_MAJORMINOR, [$GST_REQ])
106 AG_GST_CHECK_GST_CHECK($GST_MAJORMINOR, [$GST_REQ], no)
107
108 AC_MSG_NOTICE(Using GStreamer Core Plugins in $GST_PLUGINS_DIR)
109 AC_MSG_NOTICE(Using GStreamer Base Plugins in $GSTPB_PLUGINS_DIR)
110
111 dnl liboil is required
112 PKG_CHECK_MODULES(LIBOIL, liboil-$LIBOIL_MAJORMINOR >= $LIBOIL_REQ, HAVE_LIBOIL=yes, HAVE_LIBOIL=no)
113 if test "x$HAVE_LIBOIL" != "xyes"
114 then
115   AC_ERROR([liboil-$LIBOIL_REQ or later is required])
116 fi
117
118 AC_SUBST(LIBOIL_CFLAGS)
119 AC_SUBST(LIBOIL_LIBS)
120
121 dnl *** set variables based on configure arguments ***
122
123 dnl set location of plugin directory
124 AG_GST_SET_PLUGINDIR
125
126 dnl define an ERROR_CFLAGS Makefile variable
127 AG_GST_SET_ERROR_CFLAGS($GST_CVS)
128
129 dnl define correct level for debugging messages
130 AG_GST_SET_LEVEL_DEFAULT($GST_CVS)
131
132 dnl *** finalize CFLAGS, LDFLAGS, LIBS ***
133
134 dnl Overview:
135 dnl GST_OPTION_CFLAGS:  common flags for profiling, debugging, errors, ...
136 dnl GST_*:              flags shared by built objects to link against GStreamer
137 dnl GST_ALL_LDFLAGS:    linker flags shared by all
138 dnl GST_LIB_LDFLAGS:    additional linker flags for all libaries
139 dnl GST_LT_LDFLAGS:     library versioning of our libraries
140 dnl GST_PLUGIN_LDFLAGS: flags to be used for all plugins
141
142 dnl GST_OPTION_CFLAGS
143 if test "x$USE_DEBUG" = xyes; then
144    PROFILE_CFLAGS="-g"
145 fi
146 AC_SUBST(PROFILE_CFLAGS)
147
148 DEPRECATED_CFLAGS="-DGST_DISABLE_DEPRECATED"
149 AC_SUBST(DEPRECATED_CFLAGS)
150
151 dnl every flag in GST_OPTION_CFLAGS can be overridden at make time
152 GST_OPTION_CFLAGS="\$(ERROR_CFLAGS) \$(DEBUG_CFLAGS) \$(PROFILE_CFLAGS) \$(GCOV_CFLAGS) \$(OPT_CFLAGS) \$(DEPRECATED_CFLAGS)"
153
154 AC_SUBST(GST_OPTION_CFLAGS)
155
156 dnl FIXME: do we want to rename to GST_ALL_* ?
157 dnl prefer internal headers to already installed ones
158 dnl also add builddir include for enumtypes and marshal
159 dnl add GST_OPTION_CFLAGS, but overridable
160 GST_CFLAGS="-I\$(top_srcdir)/gst-libs -I\$(top_builddir)/gst-libs $GST_CFLAGS \$(GST_OPTION_CFLAGS)"
161 AC_SUBST(GST_CFLAGS)
162 AC_SUBST(GST_LIBS)
163
164 dnl this really should only contain flags, not libs - they get added before
165 dnl whatevertarget_LIBS and -L flags here affect the rest of the linking
166 GST_PLUGIN_LDFLAGS="-module -avoid-version -export-symbols-regex '^[_]*gst_plugin_desc\$\$' $GST_ALL_LDFLAGS"
167 AC_SUBST(GST_PLUGIN_LDFLAGS)
168
169 dnl FIXME: get rid of this by making sure gstreamer-check brings it in
170 dnl check for "check", unit testing library/header
171 AM_PATH_CHECK(0.9.2, HAVE_CHECK=yes, HAVE_CHECK=no)
172 AM_CONDITIONAL(HAVE_CHECK, test "x$HAVE_CHECK" = "xyes")
173
174 dnl *** configure external libs ***
175
176 HAVE_FFMPEG_UNINSTALLED=1
177
178 AC_ARG_WITH(system-ffmpeg,
179             [AC_HELP_STRING([--with-system-ffmpeg], [use system FFmpeg libraries])])
180
181 if test "x$with_system_ffmpeg" = "xyes"; then
182   PKG_CHECK_MODULES(FFMPEG, libavutil libavcodec libavformat)
183   PKG_CHECK_MODULES(POSTPROC, libavcodec libpostproc)
184   saved_CPPFLAGS="$CPPFLAGS"
185   CPPFLAGS="$CPPFLAGS $FFMPEG_CFLAGS"
186   AC_CHECK_HEADERS([avi.h])
187   CPPFLAGS="$saved_CPPFLAGS"
188   AC_DEFINE([FFMPEG_SOURCE], ["system install"], [Describes where the FFmpeg libraries come from.])
189   HAVE_FFMPEG_UNINSTALLED=0
190   AC_MSG_NOTICE([Using system-installed FFMpeg code])
191 else
192   FFMPEG_CFLAGS="-I \$(top_srcdir)/gst-libs/ext/ffmpeg/libavformat \
193                  -I \$(top_srcdir)/gst-libs/ext/ffmpeg/libavutil \
194                  -I \$(top_srcdir)/gst-libs/ext/ffmpeg/libavcodec"
195   FFMPEG_LIBS="\$(top_builddir)/gst-libs/ext/ffmpeg/libavformat/libavformat.la"
196   POSTPROC_CFLAGS="-I \$(top_srcdir)/gst-libs/ext/ffmpeg/libpostproc \
197                    -I \$(top_srcdir)/gst-libs/ext/ffmpeg/libavformat \
198                    -I \$(top_srcdir)/gst-libs/ext/ffmpeg/libavutil \
199                    -I \$(top_srcdir)/gst-libs/ext/ffmpeg/libavcodec"
200   POSTPROC_LIBS="\$(top_builddir)/gst-libs/ext/ffmpeg/libavcodec/libavcodec.la"
201   FFMPEG_SUBDIRS=gst-libs
202   AC_DEFINE(HAVE_AVI_H)
203   AC_DEFINE([FFMPEG_SOURCE], ["local snapshot"], [Describes where the FFmpeg libraries come from.])
204   ac_configure_args="$ac_configure_args --disable-v4l --disable-audio-oss --disable-dv1394 --disable-vhook --disable-ffmpeg --disable-ffserver --disable-ffplay --disable-sdltest --enable-pp"
205   AC_CONFIG_SUBDIRS(gst-libs/ext/ffmpeg)
206   AC_MSG_NOTICE([Using included FFMpeg code])
207 fi
208 AC_SUBST(FFMPEG_CFLAGS)
209 AC_SUBST(FFMPEG_LIBS)
210 AC_SUBST(FFMPEG_SUBDIRS)
211
212 AC_DEFINE_UNQUOTED(HAVE_FFMPEG_UNINSTALLED, $HAVE_FFMPEG_UNINSTALLED,
213                    [Defined if building against uninstalled FFmpeg source])
214 AM_CONDITIONAL(HAVE_FFMPEG_UNINSTALLED, test x$HAVE_FFMPEG_UNINSTALLED = x1)
215
216 AC_CONFIG_FILES(
217 Makefile
218 gst-ffmpeg.spec
219 ext/Makefile
220 ext/ffmpeg/Makefile
221 ext/libpostproc/Makefile
222 gst-libs/Makefile
223 gst-libs/ext/Makefile
224 docs/Makefile
225 docs/version.entities
226 docs/plugins/Makefile
227 common/Makefile
228 common/m4/Makefile
229 tests/Makefile
230 tests/check/Makefile
231 )
232 AC_OUTPUT