meson: update version
[platform/upstream/gst-plugins-good.git] / meson.build
1 project('gst-plugins-good', 'c', 'cpp',
2   version : '1.11.0.1',
3   meson_version : '>= 0.35.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
23 plugins_install_dir = '@0@/gstreamer-1.0'.format(get_option('libdir'))
24
25 cc = meson.get_compiler('c')
26
27 if cc.get_id() == 'msvc'
28   # Ignore several spurious warnings for things gstreamer does very commonly
29   # If a warning is completely useless and spammy, use '/wdXXXX' to suppress it
30   # If a warning is harmless but hard to fix, use '/woXXXX' so it's shown once
31   # NOTE: Only add warnings here if you are sure they're spurious
32   add_global_arguments('/wd4018', '/wd4244', '/wd4996', language : 'c')
33   # Disable SAFESEH with MSVC for plugins and libs that use external deps that
34   # are built with MinGW
35   noseh_link_args = ['/SAFESEH:NO']
36 else
37   noseh_link_args = []
38 endif
39
40 cdata = configuration_data()
41
42 check_headers = [
43   ['HAVE_DLFCN_H', 'dlfcn.h'],
44   ['HAVE_FCNTL_H', 'fcntl.h'],
45   ['HAVE_INTTYPES_H', 'inttypes.h'],
46   ['HAVE_MEMORY_H', 'memory.h'],
47   ['HAVE_PROCESS_H', 'process.h'],
48   ['HAVE_STDINT_H', 'stdint.h'],
49   ['HAVE_STDLIB_H', 'stdlib.h'],
50   ['HAVE_STRINGS_H', 'strings.h'],
51   ['HAVE_STRING_H', 'string.h'],
52   ['HAVE_SYS_IOCTL_H', 'sys/ioctl.h'],
53   ['HAVE_SYS_PARAM_H', 'sys/param.h'],
54   ['HAVE_SYS_SOCKET_H', 'sys/socket.h'],
55   ['HAVE_SYS_STAT_H', 'sys/stat.h'],
56   ['HAVE_SYS_TIME_H', 'sys/time.h'],
57   ['HAVE_SYS_TYPES_H', 'sys/types.h'],
58   ['HAVE_UNISTD_H', 'unistd.h'],
59 ]
60
61 foreach h : check_headers
62   if cc.has_header(h.get(1))
63     cdata.set(h.get(0), 1)
64   endif
65 endforeach
66
67 check_functions = [
68   ['HAVE_ASINH', 'asinh', '#include<math.h>'],
69   ['HAVE_CLOCK_GETTIME', 'clock_gettime', '#include<time.h>'],
70   ['HAVE_COSH', 'cosh', '#include<math.h>'],
71 # check token HAVE_CPU_ALPHA
72 # check token HAVE_CPU_ARM
73 # check token HAVE_CPU_CRIS
74 # check token HAVE_CPU_CRISV32
75 # check token HAVE_CPU_HPPA
76 # check token HAVE_CPU_I386
77 # check token HAVE_CPU_IA64
78 # check token HAVE_CPU_M68K
79 # check token HAVE_CPU_MIPS
80 # check token HAVE_CPU_PPC
81 # check token HAVE_CPU_PPC64
82 # check token HAVE_CPU_S390
83 # check token HAVE_CPU_SPARC
84 # check token HAVE_CPU_X86_64
85   ['HAVE_DCGETTEXT', 'dcgettext', '#include<libintl.h>'],
86 # check token HAVE_DIRECTSOUND
87 # check token HAVE_EXPERIMENTAL
88 # check token HAVE_EXTERNAL
89 # check token HAVE_FPCLASS
90 # check token HAVE_GCC_ASM
91   ['HAVE_GETPAGESIZE', 'getpagesize', '#include<unistd.h>'],
92 # check token HAVE_GETTEXT
93 # check token HAVE_GST_V4L2
94 # check token HAVE_IOS
95   ['HAVE_ISINF', 'isinf', '#include<math.h>'],
96 # check token HAVE_LIBV4L2
97   ['HAVE_MMAP', 'mmap', '#include<sys/mman.h>'],
98 # check token HAVE_OSS
99 # check token HAVE_OSS4
100 # check token HAVE_OSS_INCLUDE_IN_MACHINE
101 # check token HAVE_OSS_INCLUDE_IN_ROOT
102 # check token HAVE_OSS_INCLUDE_IN_SYS
103 # check token HAVE_OSX_AUDIO
104 # check token HAVE_OSX_VIDEO
105 # check token HAVE_RDTSC
106   ['HAVE_SINH', 'sinh', '#include<math.h>'],
107 # check token HAVE_SUNAUDIO
108 # check token HAVE_WAVEFORM
109 ]
110
111 foreach f : check_functions
112   if cc.has_function(f.get(1), prefix : f.get(2))
113     cdata.set(f.get(0), 1)
114   endif
115 endforeach
116
117 cdata.set('SIZEOF_CHAR', cc.sizeof('char'))
118 cdata.set('SIZEOF_INT', cc.sizeof('int'))
119 cdata.set('SIZEOF_LONG', cc.sizeof('long'))
120 cdata.set('SIZEOF_SHORT', cc.sizeof('short'))
121 cdata.set('SIZEOF_VOIDP', cc.sizeof('void*'))
122
123 # Here be fixmes.
124 # FIXME: check if this is correct
125 cdata.set('HAVE_CPU_X86_64', host_machine.cpu() == 'amd64')
126 cdata.set('HAVE_GCC_ASM', cc.get_id() != 'msvc')
127 cdata.set('VERSION', '"@0@"'.format(gst_version))
128 cdata.set('PACKAGE_VERSION', '"@0@"'.format(gst_version))
129 cdata.set('GST_LICENSE', '"LGPL"')
130 cdata.set('PACKAGE', '"gst-plugins-good"')
131 cdata.set('GETTEXT_PACKAGE', '"gst-plugins-good-1.0"')
132 cdata.set('PACKAGE_NAME', '"GStreamer Good Plug-ins"')
133 cdata.set('GST_PACKAGE_NAME', '"GStreamer Good Plug-ins"')
134 cdata.set('GST_PACKAGE_ORIGIN', '"Unknown package origin"') # FIXME: make configurable
135
136 # Mandatory GST deps
137 gst_dep = dependency('gstreamer-1.0', version : gst_req,
138   fallback : ['gstreamer', 'gst_dep'])
139 gstbase_dep = dependency('gstreamer-base-1.0', version : gst_req,
140   fallback : ['gstreamer', 'gst_base_dep'])
141 gstnet_dep = dependency('gstreamer-net-1.0', version : gst_req,
142   fallback : ['gstreamer', 'gst_net_dep'])
143 if host_machine.system() != 'windows'
144   gstcheck_dep = dependency('gstreamer-check-1.0', version : gst_req,
145     fallback : ['gstreamer', 'gst_check_dep'])
146 endif
147 gstcontroller_dep = dependency('gstreamer-controller-1.0', version : gst_req,
148   fallback : ['gstreamer', 'gst_controller_dep'])
149
150 gstpbutils_dep = dependency('gstreamer-pbutils-1.0', version : gst_req,
151     fallback : ['gst-plugins-base', 'pbutils_dep'])
152 gstallocators_dep = dependency('gstreamer-allocators-1.0', version : gst_req,
153     fallback : ['gst-plugins-base', 'allocators_dep'])
154 gstapp_dep = dependency('gstreamer-app-1.0', version : gst_req,
155     fallback : ['gst-plugins-base', 'app_dep'])
156 gstaudio_dep = dependency('gstreamer-audio-1.0', version : gst_req,
157     fallback : ['gst-plugins-base', 'audio_dep'])
158 gstfft_dep = dependency('gstreamer-fft-1.0', version : gst_req,
159     fallback : ['gst-plugins-base', 'fft_dep'])
160 gstriff_dep = dependency('gstreamer-riff-1.0', version : gst_req,
161     fallback : ['gst-plugins-base', 'riff_dep'])
162 gstrtp_dep = dependency('gstreamer-rtp-1.0', version : gst_req,
163     fallback : ['gst-plugins-base', 'rtp_dep'])
164 gstrtsp_dep = dependency('gstreamer-rtsp-1.0', version : gst_req,
165     fallback : ['gst-plugins-base', 'rtsp_dep'])
166 gstsdp_dep = dependency('gstreamer-sdp-1.0', version : gst_req,
167     fallback : ['gst-plugins-base', 'sdp_dep'])
168 gsttag_dep = dependency('gstreamer-tag-1.0', version : gst_req,
169     fallback : ['gst-plugins-base', 'tag_dep'])
170 gstvideo_dep = dependency('gstreamer-video-1.0', version : gst_req,
171     fallback : ['gst-plugins-base', 'video_dep'])
172
173 libm = cc.find_library('m', required : false)
174 zlib_dep = dependency('zlib')
175 bz2lib = cc.find_library('bz2', required : false)
176 gio_dep = dependency('gio-2.0', version : glib_req)
177 glib_deps = [dependency('glib-2.0', version : glib_req),
178              dependency('gobject-2.0', version : glib_req)]
179
180 cdata.set('HAVE_ZLIB', 1)
181 if bz2lib.found()
182   cdata.set('HAVE_BZ2', 1)
183 endif
184
185 # Check all of the things.
186 # TODO: None of these are actually used yet because
187 # the build files haven't been written
188 deps = [
189   ['gtk_dep','gtk+-3.0', '', ''],
190   ['gtkx_dep','gtk+-x11-3.0', '', ''],
191   ['caca_dep','caca', '', ''],
192   ['libraw1394_dep','libraw1394', '>=2.0.0', ''],
193   ['libiec61883_dep','libiec61883', '>=1.0.0', ''],
194 ]
195
196 foreach d : deps
197   varname = d[0]
198   depname = d[1]
199   version = d[2]
200   confhname = d[3]
201   if version == ''
202     curdep = dependency(depname, required : false)
203   else
204     curdep = dependency(depname, required : false, version : version)
205   endif
206   set_variable(varname, curdep)
207   if curdep.found() and confhname != ''
208     cdata.set(confhname, 1)
209   endif
210 endforeach
211
212 gst_plugins_good_args = ['-DHAVE_CONFIG_H']
213 configinc = include_directories('.')
214 libsinc = include_directories('gst-libs')
215
216 have_orcc = false
217 orcc_args = []
218 if get_option('use_orc') != 'no'
219   need_orc = get_option('use_orc') == 'yes'
220   # Used by various libraries/elements that use Orc code
221   orc_dep = dependency('orc-0.4', version : '>= 0.4.17', required : need_orc)
222   orcc = find_program('orcc', required : need_orc)
223   if orc_dep.found() and orcc.found()
224     have_orcc = true
225     orcc_args = [orcc, '--include', 'glib.h']
226     cdata.set('HAVE_ORC', 1)
227   else
228     message('Orc Compiler not found, will use backup C code')
229     cdata.set('DISABLE_ORC', 1)
230   endif
231 else
232   cdata.set('DISABLE_ORC', 1)
233 endif
234
235 subdir('gst')
236 subdir('sys')
237 subdir('ext')
238 subdir('tests')
239 subdir('po')
240
241 configure_file(input : 'config.h.meson',
242   output : 'config.h',
243   configuration : cdata)
244
245 python3 = find_program('python3')
246 run_command(python3, '-c', 'import shutil; shutil.copy("hooks/pre-commit.hook", ".git/hooks/pre-commit")')