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