libsepol/cil: disable symver on Mac builds

symver does not work on Mac, so like Android, just
disable it.

Signed-off-by: William Roberts <william.c.roberts@intel.com>
This commit is contained in:
William Roberts 2016-10-17 16:24:03 -04:00 committed by Stephen Smalley
parent 02b0d42113
commit e71e9891e4
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
#ifndef _SEPOL_DSO_H
#define _SEPOL_DSO_H 1
#if !defined(SHARED) || defined(ANDROID)
#if !defined(SHARED) || defined(ANDROID) || defined(__APPLE__)
#define DISABLE_SYMVER 1
#endif