2005-01-20 23:22:22 +00:00
|
|
|
// Berkeley Open Infrastructure for Network Computing
|
|
|
|
// http://boinc.berkeley.edu
|
|
|
|
// Copyright (C) 2005 University of California
|
2002-06-06 18:37:05 +00:00
|
|
|
//
|
2005-01-20 23:22:22 +00:00
|
|
|
// This is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU Lesser General Public
|
|
|
|
// License as published by the Free Software Foundation;
|
|
|
|
// either version 2.1 of the License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This software is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
// See the GNU Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// To view the GNU Lesser General Public License visit
|
|
|
|
// http://www.gnu.org/copyleft/lesser.html
|
|
|
|
// or write to the Free Software Foundation, Inc.,
|
|
|
|
// 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
2002-06-06 18:37:05 +00:00
|
|
|
|
2005-12-16 03:45:01 +00:00
|
|
|
#if defined(_WIN32) && !defined(__CYGWIN32__)
|
2002-08-25 07:54:33 +00:00
|
|
|
#define HOSTTYPE "windows_intelx86"
|
2004-12-30 03:03:26 +00:00
|
|
|
#include "version.h" // version numbers from autoconf
|
2002-09-11 18:28:36 +00:00
|
|
|
#endif
|
2002-06-06 18:37:05 +00:00
|
|
|
|
2005-12-16 03:45:01 +00:00
|
|
|
#if !defined(_WIN32) || defined(__CYGWIN32__)
|
2005-12-20 05:20:44 +00:00
|
|
|
#include "config.h"
|
2002-06-06 18:37:05 +00:00
|
|
|
#include <iostream>
|
|
|
|
#include <vector>
|
|
|
|
#include <string>
|
2004-03-04 11:41:43 +00:00
|
|
|
#endif
|