diff options
author | Janne Anttila <janne.anttila@digia.com> | 2009-09-02 07:54:28 (GMT) |
---|---|---|
committer | Janne Anttila <janne.anttila@digia.com> | 2009-09-02 07:54:28 (GMT) |
commit | 584129c518719df51bc4812cc30773ab81e3f3cd (patch) | |
tree | e4b587425e0334e3113994fbd2b1e6e51c7d1e79 /mkspecs | |
parent | e5b7e2632da1cd0827e68bdaff418c17ebf9b811 (diff) | |
download | Qt-584129c518719df51bc4812cc30773ab81e3f3cd.zip Qt-584129c518719df51bc4812cc30773ab81e3f3cd.tar.gz Qt-584129c518719df51bc4812cc30773ab81e3f3cd.tar.bz2 |
Removed stale fixed_stdlib.h file.
Reviewed-by: TrustMe
Diffstat (limited to 'mkspecs')
-rw-r--r-- | mkspecs/common/symbian/fixed_stdlib.h | 64 |
1 files changed, 0 insertions, 64 deletions
diff --git a/mkspecs/common/symbian/fixed_stdlib.h b/mkspecs/common/symbian/fixed_stdlib.h deleted file mode 100644 index 8b9c68e..0000000 --- a/mkspecs/common/symbian/fixed_stdlib.h +++ /dev/null @@ -1,64 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Nokia Corporation (qt-info@nokia.com) -** -** This file is part of the makespecs of the Qt Toolkit. -** -** $QT_BEGIN_LICENSE:LGPL$ -** No Commercial Usage -** This file contains pre-release code and may not be distributed. -** You may use this file in accordance with the terms and conditions -** contained in the Technology Preview License Agreement accompanying -** this package. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.1, included in the file LGPL_EXCEPTION.txt in this -** package. -** -** If you have questions regarding the use of this file, please contact -** Nokia at qt-info@nokia.com. -** -** -** -** -** -** -** -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -#ifndef FIXED_STDLIB_H -#define FIXED_STDLIB_H - -// This hack fixes defect in Symbian stdlib.h. The original file -// does not work correctly when intermixing C and C++ (STL). Remove the hack -// when Open C / C++ team has fixed the defect. - -// If _WCHAR_T_DECLARED is defined, undef it and store information that we -// need to revert the _WCHAR_T_DECLARED define after include -# ifdef _WCHAR_T_DECLARED -# define QT_REVERT_WCHAR_T_DECLARED -# undef _WCHAR_T_DECLARED -# endif //_WCHAR_T_DECLARED - -#include <stdlib.h> - -// Revert _WCHAR_T_DECLARED if necessary -# ifdef QT_REVERT_WCHAR_T_DECLARED -# define _WCHAR_T_DECLARED -# undef QT_REVERT_WCHAR_T_DECLARED -# endif //QT_REVERT_WCHAR_T_DECLARED - -#endif |