summaryrefslogtreecommitdiff
path: root/extensions/source/plugin/unx/unxmgr.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'extensions/source/plugin/unx/unxmgr.cxx')
-rw-r--r--extensions/source/plugin/unx/unxmgr.cxx10
1 files changed, 10 insertions, 0 deletions
diff --git a/extensions/source/plugin/unx/unxmgr.cxx b/extensions/source/plugin/unx/unxmgr.cxx
index 1a3736e87e0b..0ecd12b65ff7 100644
--- a/extensions/source/plugin/unx/unxmgr.cxx
+++ b/extensions/source/plugin/unx/unxmgr.cxx
@@ -1,3 +1,4 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
@@ -27,6 +28,13 @@
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_extensions.hxx"
+
+#ifdef AIX
+#define _LINUX_SOURCE_COMPAT
+#include <sys/timer.h>
+#undef _LINUX_SOURCE_COMPAT
+#endif
+
#include <cstdarg>
#include <sys/stat.h>
#include <sys/types.h>
@@ -313,3 +321,5 @@ Sequence<PluginDescription> XPluginManager_Impl::impl_getPluginDescriptions() th
}
return aDescriptions;
}
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */