00001 // This file is part of BOINC. 00002 // http://boinc.berkeley.edu 00003 // Copyright (C) 2008 University of California 00004 // 00005 // BOINC is free software; you can redistribute it and/or modify it 00006 // under the terms of the GNU Lesser General Public License 00007 // as published by the Free Software Foundation, 00008 // either version 3 of the License, or (at your option) any later version. 00009 // 00010 // BOINC is distributed in the hope that it will be useful, 00011 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00012 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 00013 // See the GNU Lesser General Public License for more details. 00014 // 00015 // You should have received a copy of the GNU Lesser General Public License 00016 // along with BOINC. If not, see <http://www.gnu.org/licenses/>. 00017 00018 #if defined(_WIN32) && !defined(__CYGWIN32__) 00019 00020 #if defined(_WIN64) && defined(_M_X64) 00021 #define HOSTTYPE "windows_x86_64" 00022 #define HOSTTYPEALT "windows_intelx86" 00023 #else 00024 #define HOSTTYPE "windows_intelx86" 00025 #endif 00026 00027 #include "version.h" // version numbers from autoconf 00028 #endif 00029 00030 #if !defined(_WIN32) || defined(__CYGWIN32__) 00031 // Please don't create a header of headers for UNIX systems. 00032 // This is partially causes the mess with looking for symbols named "*open64" 00033 // Not to mention the assumption that every source file wants these 00034 // headers is wrong. 00035 // #include "config.h" 00036 // #include <iostream> 00037 // #include <vector> 00038 // #include <string> 00039 // #include <cstring> 00040 #endif
1.5.6