Eneboo - Documentación para desarrolladores
|
00001 /**************************************************************************** 00002 ** $Id: config.h 1.1.5 edited 2006-02-23T15:39:57$ 00003 ** 00004 ** Copyright (C) 2001-2006 Trolltech AS. All rights reserved. 00005 ** 00006 ** This file is part of the Qt Script for Applications framework (QSA). 00007 ** 00008 ** This file may be distributed and/or modified under the terms of the 00009 ** GNU General Public License version 2 as published by the Free Software 00010 ** Foundation and appearing in the file LICENSE.GPL included in the 00011 ** packaging of this file. 00012 ** 00013 ** Licensees holding a valid Qt Script for Applications license may use 00014 ** this file in accordance with the Qt Script for Applications License 00015 ** Agreement provided with the Software. 00016 ** 00017 ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 00018 ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 00019 ** 00020 ** See http://www.trolltech.com/pricing.html or email sales@trolltech.com for 00021 ** information about QSA Commercial License Agreements. 00022 ** See http://www.trolltech.com/gpl/ for GPL licensing information. 00023 ** 00024 ** Contact info@trolltech.com if any conditions of this licensing are 00025 ** not clear to you. 00026 ** 00027 *****************************************************************************/ 00028 00029 #define HAVE_STRING_H 1 00030 00031 #include <qglobal.h> 00032 00033 #if defined(Q_OS_WIN32) 00034 # define HAVE_FLOAT_H 1 00035 # define HAVE_FUNC__FINITE 1 00036 # define HAVE_SYS_TIMEB_H 1 00037 #else 00038 # define HAVE_SYS_TIME_H 1 00039 # define HAVE_SYS_PARAM_H 1 00040 # define HAVE_FUNC_ISNAN 1 00041 # define HAVE_FUNC_ISINF 1 00042 #endif 00043 00044 #if defined(Q_OS_MAC) 00045 #define isnan __isnan 00046 # undef HAVE_FUNC_ISINF 00047 # define HAVE_FUNC_FINITE 1 // isinf not available on Mac OS X 00048 #endif 00049 00050 #if defined(Q_OS_IRIX) || defined(Q_OS_SOLARIS) 00051 # undef HAVE_FUNC_ISINF 00052 # define HAVE_FUNC_FINITE 1 00053 # define HAVE_IEEEFP_H 1 00054 #endif