Merge pull request #3593 from kilobyte:master

pull/3590/merge
Vadim Pisarevsky 10 years ago
commit b2a5e66fc5
  1. 2
      modules/core/src/parallel.cpp
  2. 2
      modules/core/src/system.cpp
  3. 2
      modules/videoio/src/cap_ffmpeg_impl.hpp

@ -56,7 +56,7 @@
#include <sys/types.h>
#if defined ANDROID
#include <sys/sysconf.h>
#else
#elif defined __APPLE__
#include <sys/sysctl.h>
#endif
#endif

@ -163,8 +163,6 @@ std::wstring GetTempFileNameWinRT(std::wstring prefix)
#include <sys/types.h>
#if defined ANDROID
#include <sys/sysconf.h>
#else
#include <sys/sysctl.h>
#endif
#endif

@ -139,8 +139,10 @@ extern "C" {
#include <unistd.h>
#include <stdio.h>
#include <sys/types.h>
#if defined __APPLE__
#include <sys/sysctl.h>
#endif
#endif
#ifndef MIN
#define MIN(a, b) ((a) < (b) ? (a) : (b))

Loading…
Cancel
Save