meson: update version
[platform/upstream/gstreamer.git] / meson.build
1 project('gst-plugins-bad', 'c', 'cpp',
2   version : '1.11.0.1',
3   meson_version : '>= 0.33.0',
4   default_options : [ 'warning_level=1',
5                       'buildtype=debugoptimized' ])
6
7 gst_version = meson.project_version()
8 version_arr = gst_version.split('.')
9 gst_version_major = version_arr[0]
10 gst_version_minor = version_arr[1]
11 gst_version_micro = version_arr[2]
12 if version_arr.length() == 4
13   gst_version_nano = version_arr[3]
14 else
15   gst_version_nano = 0
16 endif
17
18 glib_req = '>= 2.40.0'
19 gst_req = '>= @0@.@1@.0'.format(gst_version_major, gst_version_minor)
20
21 api_version = '1.0'
22 soversion = 0
23 # maintaining compatibility with the previous libtool versioning
24 # current = minor * 100 + micro
25 libversion = '@0@.@1@.0'.format(soversion, gst_version_minor.to_int() * 100 + gst_version_micro.to_int())
26
27 plugins_install_dir = '@0@/gstreamer-1.0'.format(get_option('libdir'))
28
29 cc = meson.get_compiler('c')
30
31 if cc.get_id() == 'msvc'
32   # Ignore several spurious warnings for things gstreamer does very commonly
33   # If a warning is completely useless and spammy, use '/wdXXXX' to suppress it
34   # If a warning is harmless but hard to fix, use '/woXXXX' so it's shown once
35   # NOTE: Only add warnings here if you are sure they're spurious
36   add_global_arguments('/wd4018', '/wd4146', '/wd4244', '/wd4333', '/wd4996', language : 'c')
37   # Disable SAFESEH with MSVC for plugins and libs that use external deps that
38   # are built with MinGW
39   noseh_link_args = ['/SAFESEH:NO']
40 else
41   noseh_link_args = []
42 endif
43
44 cdata = configuration_data()
45 check_headers = [
46   ['HAVE_DLFCN_H', 'dlfcn.h'],
47   ['HAVE_FCNTL_H', 'fcntl.h'],
48   ['HAVE_HIGHGUI_H', 'highgui.h'],
49   ['HAVE_INTTYPES_H', 'inttypes.h'],
50   ['HAVE_MEMORY_H', 'memory.h'],
51   ['HAVE_MSACM_H', 'msacm.h'],
52   ['HAVE_NETINET_IN_H', 'netinet/in.h'],
53   ['HAVE_NETINET_IP_H', 'netinet/ip.h'],
54   ['HAVE_NETINET_TCP_H', 'netinet/tcp.h'],
55   ['HAVE_OPENCV2_HIGHGUI_HIGHGUI_C_H', 'opencv2/highgui/highgui_c.h'],
56   ['HAVE_PTHREAD_H', 'pthread.h'],
57   ['HAVE_STDINT_H', 'stdint.h'],
58   ['HAVE_STDLIB_H', 'stdlib.h'],
59   ['HAVE_STRINGS_H', 'strings.h'],
60   ['HAVE_STRING_H', 'string.h'],
61   ['HAVE_SYS_PARAM_H', 'sys/param.h'],
62   ['HAVE_SYS_SOCKET_H', 'sys/socket.h'],
63   ['HAVE_SYS_STAT_H', 'sys/stat.h'],
64   ['HAVE_SYS_TIME_H', 'sys/time.h'],
65   ['HAVE_SYS_TYPES_H', 'sys/types.h'],
66   ['HAVE_SYS_UTSNAME_H', 'sys/utsname.h'],
67   ['HAVE_UNISTD_H', 'unistd.h'],
68   ['HAVE_WINDOWS_H', 'windows.h'],
69   ['HAVE_WININET_H', 'wininet.h'],
70   ['HAVE_WINSOCK2_H', 'winsock2.h'],
71   ['HAVE_WS2TCPIP_H', 'ws2tcpip.h'],
72 ]
73
74 foreach h : check_headers
75   if cc.has_header(h.get(1))
76     cdata.set(h.get(0), 1)
77   endif
78 endforeach
79
80 check_functions = [
81 # check token HAVE_ACM
82 # check token HAVE_ANDROID_MEDIA
83 # check token HAVE_APEXSINK
84 # check token HAVE_APPLE_MEDIA
85 # check token HAVE_ASSRENDER
86 # check token HAVE_AVC
87 # check token HAVE_AVFOUNDATION
88 # check token HAVE_BLUEZ
89 # check token HAVE_BZ2
90 # check token HAVE_CFLOCALECOPYCURRENT
91 # check token HAVE_CFPREFERENCESCOPYAPPVALUE
92 # check token HAVE_CHROMAPRINT
93 # check token HAVE_CPU_ALPHA
94 # check token HAVE_CPU_ARM
95 # check token HAVE_CPU_CRIS
96 # check token HAVE_CPU_CRISV32
97 # check token HAVE_CPU_HPPA
98 # check token HAVE_CPU_I386
99 # check token HAVE_CPU_IA64
100 # check token HAVE_CPU_M68K
101 # check token HAVE_CPU_MIPS
102 # check token HAVE_CPU_PPC
103 # check token HAVE_CPU_PPC64
104 # check token HAVE_CPU_S390
105 # check token HAVE_CPU_SPARC
106 # check token HAVE_CPU_X86_64
107 # check token HAVE_CURL
108 # check token HAVE_DAALA
109 # check token HAVE_DASH
110 # check token HAVE_DC1394
111   ['HAVE_DCGETTEXT', 'dcgettext'],
112 # check token HAVE_DECKLINK
113 # check token HAVE_DIRECT3D
114 # check token HAVE_DIRECTDRAW
115 # check token HAVE_DIRECTFB
116 # check token HAVE_DIRECTSOUND
117 # check token HAVE_DOWHILE_MACROS
118 # check token HAVE_DTS
119 # check token HAVE_DVB
120 # check token HAVE_EXPERIMENTAL
121 # check token HAVE_EXTERNAL
122 # check token HAVE_FAAC
123 # check token HAVE_FAAD
124 # check token HAVE_FBDEV
125 # check token HAVE_FIONREAD_IN_SYS_FILIO
126 # check token HAVE_FIONREAD_IN_SYS_IOCTL
127 # check token HAVE_FLITE
128 # check token HAVE_FLUIDSYNTH
129   ['HAVE_GETPAGESIZE', 'getpagesize'],
130 # check token HAVE_GETTEXT
131 # check token HAVE_GL
132 # check token HAVE_GLCHAR
133 # check token HAVE_GLEGLIMAGEOES
134 # check token HAVE_GLINTPTR
135 # check token HAVE_GLSIZEIPTR
136 # check token HAVE_GME
137   ['HAVE_GMTIME_R', 'gmtime_r'],
138 # check token HAVE_GRAPHENE
139 # check token HAVE_GSETTINGS
140 # check token HAVE_GSM
141 # check token HAVE_GUDEV
142 # check token HAVE_HLS
143 # check token HAVE_ICONV
144 # check token HAVE_IOS
145 # check token HAVE_JPEG
146 # check token HAVE_KATE
147 # check token HAVE_LADSPA
148 # check token HAVE_LIBGCRYPT
149 # check token HAVE_LIBGME_ACCURACY
150 # check token HAVE_LIBMMS
151 # check token HAVE_LIBNSL
152 # check token HAVE_LIBSOCKET
153 # check token HAVE_LIBUSB
154 # check token HAVE_LIBVISUAL
155 # check token HAVE_LINSYS
156 # check token HAVE_LRDF
157 # check token HAVE_LV2
158 # check token HAVE_MIMIC
159   ['HAVE_MMAP', 'mmap'],
160 # check token HAVE_MODPLUG
161 # check token HAVE_MPEG2ENC
162 # check token HAVE_MPG123
163 # check token HAVE_MPLEX
164 # check token HAVE_MUSEPACK
165 # check token HAVE_MYTHTV
166 # check token HAVE_NAS
167 # check token HAVE_NEON
168 # check token HAVE_NETTLE
169 # check token HAVE_OFA
170 # check token HAVE_OPENAL
171 # check token HAVE_OPENCV
172 # check token HAVE_OPENEXR
173 # check token HAVE_OPENJPEG
174 # check token HAVE_OPENJPEG_1
175 # check token HAVE_OPENNI2
176 # check token HAVE_OPENSLES
177 # check token HAVE_OPUS
178 # check token HAVE_ORC
179 # check token HAVE_OSX
180 # check token HAVE_OSX_VIDEO
181 # check token HAVE_PNG
182 # check token HAVE_PVR
183 # check token HAVE_QUICKTIME
184 # check token HAVE_RDTSC
185 # check token HAVE_RESINDVD
186 # check token HAVE_RSVG
187 # check token HAVE_RSVG_2_36_2
188 # check token HAVE_RTMP
189 # check token HAVE_SBC
190 # check token HAVE_SCHRO
191 # check token HAVE_SDL
192 # check token HAVE_SHM
193 # check token HAVE_SMOOTHSTREAMING
194 # check token HAVE_SNDFILE
195 # check token HAVE_SNDIO
196 # check token HAVE_SOUNDTOUCH
197 # check token HAVE_SOUNDTOUCH_1_4
198 # check token HAVE_SPANDSP
199 # check token HAVE_SPC
200 # check token HAVE_SRTP
201 # check token HAVE_SSH2
202 # check token HAVE_TELETEXTDEC
203 # check token HAVE_TIGER
204 # check token HAVE_TIMIDITY
205 # check token HAVE_UVCH264
206 # check token HAVE_VALGRIND
207 # check token HAVE_VCD
208 # check token HAVE_VDPAU
209 # check token HAVE_VIDEOTOOLBOX
210 # check token HAVE_VIDEOTOOLBOX_10_9_6
211 # check token HAVE_VOAACENC
212 # check token HAVE_VOAMRWBENC
213 # check token HAVE_WASAPI
214 # check token HAVE_WAYLAND
215 # check token HAVE_WEBP
216 # check token HAVE_WILDMIDI
217 # check token HAVE_WILDMIDI_0_2_2
218 # check token HAVE_WIN32
219 # check token HAVE_WININET
220 # check token HAVE_WINKS
221 # check token HAVE_WINSCREENCAP
222 # check token HAVE_XVID
223 # check token HAVE_ZBAR
224 ]
225
226 foreach f : check_functions
227   if cc.has_function(f.get(1))
228     cdata.set(f.get(0), 1)
229   endif
230 endforeach
231
232 cdata.set('SIZEOF_CHAR', cc.sizeof('char'))
233 cdata.set('SIZEOF_INT', cc.sizeof('int'))
234 cdata.set('SIZEOF_LONG', cc.sizeof('long'))
235 cdata.set('SIZEOF_SHORT', cc.sizeof('short'))
236 cdata.set('SIZEOF_VOIDP', cc.sizeof('void*'))
237
238 cdata.set('VERSION', '"@0@"'.format(gst_version))
239 cdata.set('PACKAGE', '"gst-plugins-bad"')
240 cdata.set('PACKAGE_VERSION', '"@0@"'.format(gst_version))
241 cdata.set('PACKAGE_BUGREPORT', '"http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer"')
242 cdata.set('PACKAGE_NAME', '"GStreamer Bad Plug-ins"')
243 cdata.set('GETTEXT_PACKAGE', '"gst-plugins-bad-1.0"')
244 cdata.set('GST_API_VERSION', '"@0@"'.format(api_version))
245 cdata.set('GST_PACKAGE_NAME', '"GStreamer Bad Plug-ins"')
246 cdata.set('GST_PACKAGE_ORIGIN', '"Unknown package origin"')
247 cdata.set('GST_LICENSE', '"LGPL"')
248 cdata.set('LIBDIR', '"@0@"'.format(get_option('libdir')))
249
250 # FIXME: This should be exposed as a configuration option
251 host_system = host_machine.system()
252 if host_system == 'linux'
253   cdata.set('DEFAULT_VIDEOSRC', '"v4l2src"')
254 elif host_system == 'osx'
255   cdata.set('DEFAULT_VIDEOSRC', '"avfvideosrc"')
256 else
257   cdata.set('DEFAULT_VIDEOSRC', '"videotestsrc"')
258 endif
259
260 # Mandatory GST deps
261 gst_dep = dependency('gstreamer-1.0', version : gst_req,
262   fallback : ['gstreamer', 'gst_dep'])
263 gstbase_dep = dependency('gstreamer-base-1.0', version : gst_req,
264   fallback : ['gstreamer', 'gst_base_dep'])
265 gstnet_dep = dependency('gstreamer-net-1.0', version : gst_req,
266   fallback : ['gstreamer', 'gst_net_dep'])
267 gstcontroller_dep = dependency('gstreamer-controller-1.0', version : gst_req,
268   fallback : ['gstreamer', 'gst_controller_dep'])
269
270 gstpbutils_dep = dependency('gstreamer-pbutils-1.0', version : gst_req,
271     fallback : ['gst-plugins-base', 'pbutils_dep'])
272 gstallocators_dep = dependency('gstreamer-allocators-1.0', version : gst_req,
273     fallback : ['gst-plugins-base', 'allocators_dep'])
274 gstapp_dep = dependency('gstreamer-app-1.0', version : gst_req,
275     fallback : ['gst-plugins-base', 'app_dep'])
276 gstaudio_dep = dependency('gstreamer-audio-1.0', version : gst_req,
277     fallback : ['gst-plugins-base', 'audio_dep'])
278 gstfft_dep = dependency('gstreamer-fft-1.0', version : gst_req,
279     fallback : ['gst-plugins-base', 'fft_dep'])
280 gstriff_dep = dependency('gstreamer-riff-1.0', version : gst_req,
281     fallback : ['gst-plugins-base', 'riff_dep'])
282 gstrtp_dep = dependency('gstreamer-rtp-1.0', version : gst_req,
283     fallback : ['gst-plugins-base', 'rtp_dep'])
284 gstrtsp_dep = dependency('gstreamer-rtsp-1.0', version : gst_req,
285     fallback : ['gst-plugins-base', 'rtsp_dep'])
286 gstsdp_dep = dependency('gstreamer-sdp-1.0', version : gst_req,
287     fallback : ['gst-plugins-base', 'sdp_dep'])
288 gsttag_dep = dependency('gstreamer-tag-1.0', version : gst_req,
289     fallback : ['gst-plugins-base', 'tag_dep'])
290 gstvideo_dep = dependency('gstreamer-video-1.0', version : gst_req,
291     fallback : ['gst-plugins-base', 'video_dep'])
292
293 libm = cc.find_library('m', required : false)
294 glib_dep = dependency('glib-2.0', version : glib_req)
295 gio_dep = dependency('gio-2.0', version : glib_req)
296 gmodule_dep = dependency('gmodule-2.0', version : glib_req)
297 x11_dep = dependency('x11', required : false)
298 # Used by dtls and hls
299 openssl_dep = dependency('openssl', version : '>= 1.0.1', required : false)
300
301 if x11_dep.found()
302   cdata.set('HAVE_X11', 1)
303 endif
304
305 mathlib = cc.find_library('m', required : false)
306
307 if host_machine.system() == 'windows'
308   winsock2 = [cc.find_library('ws2_32')]
309 else
310   winsock2 = []
311 endif
312
313 have_orcc = false
314 orcc_args = []
315 if get_option('use_orc') != 'no'
316   need_orc = get_option('use_orc') == 'yes'
317   # Used by various libraries/elements that use Orc code
318   orc_dep = dependency('orc-0.4', required : need_orc)
319   orcc = find_program('orcc', required : need_orc)
320   if orc_dep.found() and orcc.found()
321     have_orcc = true
322     orcc_args = [orcc, '--include', 'glib.h']
323     cdata.set('HAVE_ORC', 1)
324   else
325     message('Orc Compiler not found, will use backup C code')
326     cdata.set('DISABLE_ORC', 1)
327   endif
328 else
329   cdata.set('DISABLE_ORC', 1)
330 endif
331
332 configure_file(input : 'config.h.meson',
333   output : 'config.h',
334   configuration : cdata)
335
336 gst_plugins_bad_args = ['-DHAVE_CONFIG_H']
337 configinc = include_directories('.')
338 libsinc = include_directories('gst-libs')
339
340 vs_module_defs_dir = meson.current_source_dir() + '/win32/common/'
341
342 # Used by the *_mkenum.py helper scripts
343 glib_mkenums = find_program('glib-mkenums')
344
345 subdir('gst-libs')
346 subdir('gst')
347 subdir('sys')
348 subdir('ext')
349 subdir('pkgconfig')
350
351 python3 = find_program('python3')
352 run_command(python3, '-c', 'import shutil; shutil.copy("hooks/pre-commit.hook", ".git/hooks/pre-commit")')