/usr/include/dlib/platform.h is in libdlib-dev 18.18-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 | // Copyright (C) 2006 Davis E. King (davis@dlib.net)
// License: Boost Software License See LICENSE.txt for the full license.
#ifndef DLIB_PLATFORm_
#define DLIB_PLATFORm_
/*!
This file ensures that:
- if (we are compiling under a posix platform) then
- POSIX will be defined
- if (this is also Mac OS X) then
- MACOSX will be defined
- if (this is also HP-UX) then
- HPUX will be defined
- if (we are compiling under an MS Windows platform) then
- WIN32 will be defined
!*/
/*
A good reference for this sort of information is
http://predef.sourceforge.net/
*/
// Define WIN32 if this is MS Windows
#ifndef WIN32
#if defined( _MSC_VER) || defined(__BORLANDC__) || defined(_WIN32) || defined(__WIN32__) || defined(__TOS_WIN__)
#define WIN32
#endif
#endif
#ifndef WIN32
// since this is the only other platform the library currently supports
// just assume it is POSIX if it isn't WIN32
#ifndef POSIX
#define POSIX
#endif
#ifndef HPUX
#if defined(__hpux ) || defined(hpux) || defined (_hpux)
#define HPUX
#endif
#endif
#ifndef MACOSX
#ifdef __MACOSX__
#define MACOSX
#endif
#ifdef __APPLE__
#define MACOSX
#endif
#endif
#endif
#endif // DLIB_PLATFORm_
|