Check for libm and link against it (ffmpeg is using sqrt).
[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.13
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 check for libm, for sin()
87 AC_CHECK_LIBM
88 AC_SUBST(LIBM)
89
90 dnl *** checks for header files ***
91
92 dnl check if we have ANSI C header files
93 AC_HEADER_STDC
94
95 dnl *** checks for types/defines ***
96
97 dnl *** checks for structures ***
98
99 dnl *** checks for compiler characteristics ***
100
101 dnl *** checks for library functions ***
102
103 dnl *** checks for dependancy libraries ***
104
105 dnl checks for gstreamer
106 dnl uninstalled is selected preferentially -- see pkg-config(1)
107 AG_GST_CHECK_GST($GST_MAJORMINOR, [$GST_REQ])
108 AG_GST_CHECK_GST_BASE($GST_MAJORMINOR, [$GST_REQ])
109 AG_GST_CHECK_GST_PLUGINS_BASE($GST_MAJORMINOR, [$GST_REQ])
110 AG_GST_CHECK_GST_CHECK($GST_MAJORMINOR, [$GST_REQ], no)
111 AM_CONDITIONAL(HAVE_GST_CHECK, test "x$HAVE_GST_CHECK" = "xyes")
112
113 AC_MSG_NOTICE(Using GStreamer Core Plugins in $GST_PLUGINS_DIR)
114 AC_MSG_NOTICE(Using GStreamer Base Plugins in $GSTPB_PLUGINS_DIR)
115
116 dnl liboil is required
117 PKG_CHECK_MODULES(LIBOIL, liboil-$LIBOIL_MAJORMINOR >= $LIBOIL_REQ, HAVE_LIBOIL=yes, HAVE_LIBOIL=no)
118 if test "x$HAVE_LIBOIL" != "xyes"
119 then
120   AC_ERROR([liboil-$LIBOIL_REQ or later is required])
121 fi
122
123 AC_SUBST(LIBOIL_CFLAGS)
124 AC_SUBST(LIBOIL_LIBS)
125
126 dnl *** set variables based on configure arguments ***
127
128 dnl set location of plugin directory
129 AG_GST_SET_PLUGINDIR
130
131 dnl define an ERROR_CFLAGS Makefile variable
132 AG_GST_SET_ERROR_CFLAGS($GST_CVS)
133
134 dnl define correct level for debugging messages
135 AG_GST_SET_LEVEL_DEFAULT($GST_CVS)
136
137 dnl *** finalize CFLAGS, LDFLAGS, LIBS ***
138
139 dnl Overview:
140 dnl GST_OPTION_CFLAGS:  common flags for profiling, debugging, errors, ...
141 dnl GST_*:              flags shared by built objects to link against GStreamer
142 dnl GST_ALL_LDFLAGS:    linker flags shared by all
143 dnl GST_LIB_LDFLAGS:    additional linker flags for all libaries
144 dnl GST_LT_LDFLAGS:     library versioning of our libraries
145 dnl GST_PLUGIN_LDFLAGS: flags to be used for all plugins
146
147 dnl GST_OPTION_CFLAGS
148 if test "x$USE_DEBUG" = xyes; then
149    PROFILE_CFLAGS="-g"
150 fi
151 AC_SUBST(PROFILE_CFLAGS)
152
153 DEPRECATED_CFLAGS="-DGST_DISABLE_DEPRECATED"
154 AC_SUBST(DEPRECATED_CFLAGS)
155
156 dnl every flag in GST_OPTION_CFLAGS can be overridden at make time
157 GST_OPTION_CFLAGS="\$(ERROR_CFLAGS) \$(DEBUG_CFLAGS) \$(PROFILE_CFLAGS) \$(GCOV_CFLAGS) \$(OPT_CFLAGS) \$(DEPRECATED_CFLAGS)"
158
159 AC_SUBST(GST_OPTION_CFLAGS)
160
161 dnl FIXME: do we want to rename to GST_ALL_* ?
162 dnl prefer internal headers to already installed ones
163 dnl also add builddir include for enumtypes and marshal
164 dnl add GST_OPTION_CFLAGS, but overridable
165 GST_CFLAGS="-I\$(top_srcdir)/gst-libs -I\$(top_builddir)/gst-libs $GST_CFLAGS \$(GST_OPTION_CFLAGS)"
166 AC_SUBST(GST_CFLAGS)
167 AC_SUBST(GST_LIBS)
168
169 GST_ALL_LDFLAGS="-no-undefined"
170 AC_SUBST(GST_ALL_LDFLAGS)
171
172 dnl this really should only contain flags, not libs - they get added before
173 dnl whatevertarget_LIBS and -L flags here affect the rest of the linking
174 GST_PLUGIN_LDFLAGS="-module -avoid-version -export-symbols-regex '^[_]*gst_plugin_desc\$\$' $GST_ALL_LDFLAGS"
175 AC_SUBST(GST_PLUGIN_LDFLAGS)
176
177 dnl Add MacOSX specific flags
178 AC_CANONICAL_HOST
179 case $host_os in
180      darwin*)
181         DARWIN_LDFLAGS="-Wl,-read_only_relocs,suppress"
182         ;;
183      *)
184         DARWIN_LDFLAGS=""
185         ;;
186 esac
187 AC_SUBST(DARWIN_LDFLAGS)
188
189 dnl *** configure external libs ***
190
191 HAVE_FFMPEG_UNINSTALLED=1
192
193 AC_ARG_WITH(system-ffmpeg,
194             [AC_HELP_STRING([--with-system-ffmpeg], [use system FFmpeg libraries])])
195
196 if test "x$with_system_ffmpeg" = "xyes"; then
197   PKG_CHECK_MODULES(FFMPEG, libavutil libavcodec libavformat)
198   PKG_CHECK_MODULES(POSTPROC, libavcodec libpostproc)
199   saved_CPPFLAGS="$CPPFLAGS"
200   CPPFLAGS="$CPPFLAGS $FFMPEG_CFLAGS"
201   AC_CHECK_HEADERS([avi.h])
202   CPPFLAGS="$saved_CPPFLAGS"
203   AC_DEFINE([FFMPEG_SOURCE], ["system install"], [Describes where the FFmpeg libraries come from.])
204   HAVE_FFMPEG_UNINSTALLED=0
205   AC_MSG_NOTICE([Using system-installed FFMpeg code])
206 else
207   FFMPEG_CFLAGS="-I \$(top_srcdir)/gst-libs/ext/ffmpeg/libavformat \
208                  -I \$(top_srcdir)/gst-libs/ext/ffmpeg/libavutil \
209                  -I \$(top_srcdir)/gst-libs/ext/ffmpeg/libavcodec"
210   FFMPEG_LIBS="\$(top_builddir)/gst-libs/ext/ffmpeg/libavformat/libavformat.la"
211   POSTPROC_CFLAGS="-I \$(top_srcdir)/gst-libs/ext/ffmpeg/libpostproc \
212                    -I \$(top_srcdir)/gst-libs/ext/ffmpeg/libavformat \
213                    -I \$(top_srcdir)/gst-libs/ext/ffmpeg/libavutil \
214                    -I \$(top_srcdir)/gst-libs/ext/ffmpeg/libavcodec"
215   POSTPROC_LIBS="\$(top_builddir)/gst-libs/ext/ffmpeg/libavcodec/libavcodec.la"
216   FFMPEG_SUBDIRS=gst-libs
217   AC_DEFINE(HAVE_AVI_H)
218   AC_DEFINE([FFMPEG_SOURCE], ["local snapshot"], [Describes where the FFmpeg libraries come from.])
219   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"
220   AC_CONFIG_SUBDIRS(gst-libs/ext/ffmpeg)
221   AC_MSG_NOTICE([Using included FFMpeg code])
222 fi
223 AC_SUBST(FFMPEG_CFLAGS)
224 AC_SUBST(FFMPEG_LIBS)
225 AC_SUBST(FFMPEG_SUBDIRS)
226
227 AC_DEFINE_UNQUOTED(HAVE_FFMPEG_UNINSTALLED, $HAVE_FFMPEG_UNINSTALLED,
228                    [Defined if building against uninstalled FFmpeg source])
229 AM_CONDITIONAL(HAVE_FFMPEG_UNINSTALLED, test x$HAVE_FFMPEG_UNINSTALLED = x1)
230
231 AC_CONFIG_FILES(
232 Makefile
233 gst-ffmpeg.spec
234 ext/Makefile
235 ext/ffmpeg/Makefile
236 ext/libpostproc/Makefile
237 gst-libs/Makefile
238 gst-libs/ext/Makefile
239 docs/Makefile
240 docs/version.entities
241 docs/plugins/Makefile
242 common/Makefile
243 common/m4/Makefile
244 tests/Makefile
245 tests/check/Makefile
246 )
247 AC_OUTPUT