This commit is contained in:
Jean-Francois Dockes 2020-04-17 16:17:52 +02:00
parent 9471d90394
commit 0f669a6799
3 changed files with 8 additions and 2 deletions

View File

@ -110,8 +110,11 @@
#include "pathut.h"
#include "smallut.h"
#ifdef MDU_INCLUDE_LOG
#include MDU_INCLUDE_LOG
#else
#include "log.h"
#endif
using namespace std;

View File

@ -29,7 +29,7 @@ OTHER DEALINGS IN THE SOFTWARE.
// PXALINUX: platforms like kfreebsd which aren't linux but use the
// same xattr interface
#if defined(__gnu_linux__) || \
#if defined(__linux__) || \
(defined(__FreeBSD_kernel__)&&defined(__GLIBC__)&&!defined(__FreeBSD__)) ||\
defined(__CYGWIN__)
#define PXALINUX

View File

@ -18,6 +18,9 @@
#include "autoconfig.h"
#else
#include "config.h"
#ifndef PRETEND_USE
#define PRETEND_USE(expr) ((void)(expr))
#endif
#endif
#include "readfile.h"