fix compile of libs/vfork with slightly older(?) glibc headers

This commit is contained in:
Paul Davis 2014-03-14 14:52:23 -04:00
parent 42e6353338
commit 83a5eadcf8
2 changed files with 2 additions and 1 deletions

View File

@ -99,3 +99,4 @@ int main(int argc, char *argv[]) {
exit(-1);
return -1;
}

View File

@ -24,5 +24,5 @@ def build(bld):
obj.install_path = os.path.join(bld.env['LIBDIR'], 'ardour3/vfork')
obj.defines = [
'_POSIX_SOURCE',
'_XOPEN_SOURCE=700',
'_XOPEN_SOURCE=500',
]