summaryrefslogtreecommitdiff
path: root/extensions/source/plugin/base/plcom.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'extensions/source/plugin/base/plcom.cxx')
-rw-r--r--extensions/source/plugin/base/plcom.cxx10
1 files changed, 8 insertions, 2 deletions
diff --git a/extensions/source/plugin/base/plcom.cxx b/extensions/source/plugin/base/plcom.cxx
index 09b4f1913d13..1b4c9fbcb312 100644
--- a/extensions/source/plugin/base/plcom.cxx
+++ b/extensions/source/plugin/base/plcom.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.
@@ -28,13 +29,17 @@
// 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
+
#ifdef SOLARIS
#include <limits>
#endif
-#if STLPORT_VERSION>=321
#include <cstdarg>
-#endif
#include <tools/fsys.hxx>
#include <plugin/impl.hxx>
@@ -69,3 +74,4 @@ NPError PluginComm::NPP_Destroy( XPlugin_Impl* i_pImpl, NPSavedData** save )
return NPP_Destroy( i_pImpl->getNPPInstance(), save );
}
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */