Use MIUtilSystemLinux on FreeBSD as well

We should later rename this file (probably MIUtilSystemPOSIX), but
more clean-up is still needed here, and we can wait until we better
understand how this code may be shared between FreeBSD, Linux, and OS X.

llvm-svn: 209631
This commit is contained in:
Ed Maste 2014-05-26 13:57:15 +00:00
parent d60480f7b6
commit 4c433e5206
3 changed files with 3 additions and 3 deletions

View File

@ -28,7 +28,7 @@
#if defined( _MSC_VER )
#include "MIUtilSystemWindows.h"
#elif defined( __linux )
#elif defined( __FreeBSD__ ) || defined( __linux )
#include "MIUtilSystemLinux.h"
#elif defined( __APPLE__ )
#include "MIUtilSystemOsx.h"

View File

@ -22,7 +22,7 @@
// Include compiler configuration
#include "MICmnConfig.h"
#if defined( __linux )
#if defined( __FreeBSD__ ) || defined( __linux )
// In-house headers:
#include "MIUtilSystemLinux.h"

View File

@ -24,7 +24,7 @@
// Include compiler configuration
#include "MICmnConfig.h"
#if defined( __linux )
#if defined( __FreeBSD__ ) || defined( __linux )
// In-house headers:
#include "MIUtilString.h"