diff options
author | Brian Smith <brian@dbsoft.org> | 2022-04-26 11:07:23 -0500 |
---|---|---|
committer | Brian Smith <brian@dbsoft.org> | 2022-04-26 11:07:23 -0500 |
commit | 9e2a89c71ddf67975da35eb100673f6b5546f292 (patch) | |
tree | ca7b972015f5ad2388d416fa0ec8f506cc9fb8d6 /media | |
parent | 68d1c14bdf79d1c536ae05a4ce33fd9601c277eb (diff) | |
download | uxp-9e2a89c71ddf67975da35eb100673f6b5546f292.tar.gz |
Issue #1829 - Revert "Issue #1751 -- Remove XP_DARWIN"
This reverts commit 3d671e4275c73a1484c72713304c6e04ec4ffc7c.
Diffstat (limited to 'media')
-rw-r--r-- | media/ffvpx/config.h | 2 | ||||
-rw-r--r-- | media/libav/config.h | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/media/ffvpx/config.h b/media/ffvpx/config.h index f43da8f284..db2f7b42e1 100644 --- a/media/ffvpx/config.h +++ b/media/ffvpx/config.h @@ -26,6 +26,8 @@ #undef HAVE_LIBC_MSVCRT #define HAVE_LIBC_MSVCRT 0 #endif +#elif defined(XP_DARWIN) +#include "config_darwin64.h" #elif defined(XP_UNIX) #if defined(HAVE_64BIT_BUILD) #include "config_unix64.h" diff --git a/media/libav/config.h b/media/libav/config.h index 4abd411041..96c5ea9506 100644 --- a/media/libav/config.h +++ b/media/libav/config.h @@ -17,6 +17,8 @@ #define MOZ_LIBAV_CONFIG_H #if defined(XP_WIN) #include "config_win.h" +#elif defined(XP_DARWIN) +#include "config_darwin.h" #elif defined(XP_UNIX) #include "config_unix.h" #endif |