meson.build: move -D_GNU_SOURCE to the other hardcoded args

No need for this to be on its own line
This commit is contained in:
Peter Hutterer 2021-06-24 11:26:05 +10:00 committed by Wim Taymans
parent 887876bea8
commit 5e76f39e9d

View file

@ -8,8 +8,6 @@ project('pipewire', ['c' ],
#'b_sanitize=address,undefined',
'buildtype=debugoptimized' ])
add_project_arguments('-D_GNU_SOURCE', language: 'c')
pipewire_version = meson.project_version()
version_arr = pipewire_version.split('.')
pipewire_version_major = version_arr[0]
@ -86,6 +84,7 @@ common_flags = [
]
cc_flags = common_flags + [
'-D_GNU_SOURCE',
'-DFASTPATH',
# '-DSPA_DEBUG_MEMCPY',
]