diff options
author | athenian200 <athenian200@outlook.com> | 2019-10-02 16:46:20 -0500 |
---|---|---|
committer | athenian200 <athenian200@outlook.com> | 2019-10-21 04:53:41 -0500 |
commit | e3fb8bd24dcbc8357c325e3b24d0ad410bf0b15d (patch) | |
tree | 426b333d2ce6fd3daf6d6eb1435a0217df619b63 /media | |
parent | 5c28f10c144026aba25044410510ba8418978698 (diff) | |
download | uxp-e3fb8bd24dcbc8357c325e3b24d0ad410bf0b15d.tar.gz |
MoonchildProductions#1251 - Part 14: libstagefright build should avoid _GLIBCXX_OS_DEFINES.
https://bugzilla.mozilla.org/show_bug.cgi?id=1367775
Windows already requires this ifdef, Solaris needs it too. Not much more to say, but I can do research and follow up on this if asked.
Diffstat (limited to 'media')
-rw-r--r-- | media/libstagefright/moz.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/media/libstagefright/moz.build b/media/libstagefright/moz.build index 5a8c9521a6..87e1621120 100644 --- a/media/libstagefright/moz.build +++ b/media/libstagefright/moz.build @@ -7,7 +7,7 @@ DEFINES['ANDROID_SMP'] = 0 DEFINES['LOG_NDEBUG'] = 1 -if CONFIG['OS_TARGET'] != 'WINNT': +if CONFIG['OS_TARGET'] != 'WINNT' and CONFIG['OS_TARGET'] != 'SunOS': DEFINES['_GLIBCXX_OS_DEFINES'] = True if CONFIG['OS_TARGET'] == 'WINNT': |