summaryrefslogtreecommitdiff
authorsandman <sandman>2002-11-30 16:46:36 (UTC)
committer sandman <sandman>2002-11-30 16:46:36 (UTC)
commitfe672fd88ead7a987d66f03439eb860e67aeaca6 (patch) (side-by-side diff)
tree99c97ac69ee929dd43d5f54faa901c62af6a8f03
parentcfb09f9ae7b710b3079320f3b268c45c3fae8979 (diff)
downloadopie-fe672fd88ead7a987d66f03439eb860e67aeaca6.zip
opie-fe672fd88ead7a987d66f03439eb860e67aeaca6.tar.gz
opie-fe672fd88ead7a987d66f03439eb860e67aeaca6.tar.bz2
Additional #include that is needed for some toolchains
(read: glibc include files)
Diffstat (more/less context) (show whitespace changes)
-rw-r--r--library/qpeapplication.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/library/qpeapplication.cpp b/library/qpeapplication.cpp
index c8e6e74..c782837 100644
--- a/library/qpeapplication.cpp
+++ b/library/qpeapplication.cpp
@@ -13,24 +13,25 @@
**
** See http://www.trolltech.com/gpl/ for GPL licensing information.
**
** Contact info@trolltech.com if any conditions of this licensing are
** not clear to you.
**
** $Id$
**
**********************************************************************/
#define QTOPIA_INTERNAL_LANGLIST
#include <stdlib.h>
#include <unistd.h>
+#include <linux/limits.h> // needed for some toolchains (PATH_MAX)
#include <qfile.h>
#ifdef Q_WS_QWS
#ifndef QT_NO_COP
#if QT_VERSION <= 231
#define private public
#define sendLocally processEvent
#include "qcopenvelope_qws.h"
#undef private
#else
#include "qcopenvelope_qws.h"
#endif
#endif