summaryrefslogtreecommitdiff
path: root/libs/vfork
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2014-03-14 14:52:23 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2014-03-14 14:52:23 -0400
commit83a5eadcf88620e692ab32a17184d794f76a00cd (patch)
tree376044c8574a8b6e1509838f0a2dfe916e676d09 /libs/vfork
parent42e6353338151ae9104b6d347b657a9438ccffe3 (diff)
fix compile of libs/vfork with slightly older(?) glibc headers
Diffstat (limited to 'libs/vfork')
-rw-r--r--libs/vfork/exec_wrapper.c1
-rw-r--r--libs/vfork/wscript2
2 files changed, 2 insertions, 1 deletions
diff --git a/libs/vfork/exec_wrapper.c b/libs/vfork/exec_wrapper.c
index 4beb7a3b87..8a288f01a1 100644
--- a/libs/vfork/exec_wrapper.c
+++ b/libs/vfork/exec_wrapper.c
@@ -99,3 +99,4 @@ int main(int argc, char *argv[]) {
exit(-1);
return -1;
}
+
diff --git a/libs/vfork/wscript b/libs/vfork/wscript
index 1301f215c2..48526d0783 100644
--- a/libs/vfork/wscript
+++ b/libs/vfork/wscript
@@ -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',
]