config-host.h revision 4eea10ee035622d6ca422509072f0c4bfe4be09d
1666N/A/* $Id$ */
98N/A/** @file
1592N/A * Sun host config - maintained by hand
98N/A */
98N/A
919N/A/*
919N/A * Copyright (C) 2006-2007 Sun Microsystems, Inc.
919N/A *
919N/A * This file is part of VirtualBox Open Source Edition (OSE), as
919N/A * available from http://www.virtualbox.org. This file is free software;
919N/A * you can redistribute it and/or modify it under the terms of the GNU
919N/A * General Public License (GPL) as published by the Free Software
919N/A * Foundation, in version 2 as it comes in the "COPYING" file of the
919N/A * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
919N/A * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
919N/A *
919N/A * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
919N/A * Clara, CA 95054 USA or visit http://www.sun.com if you need
919N/A * additional information or have any questions.
919N/A */
919N/A
919N/A
98N/A#if defined(RT_ARCH_AMD64) || defined(HOST_X86_64) /* The latter, for dyngen when cross compiling (windows, l4, etc). */
98N/A# define HOST_X86_64 1
98N/A# define HOST_LONG_BITS 64
493N/A#else
493N/A# define HOST_I386 1
98N/A# define HOST_LONG_BITS 32
970N/A# ifdef RT_OS_WINDOWS
970N/A# define CONFIG_WIN32 1
970N/A# elif defined(RT_OS_OS2)
970N/A# define CONFIG_OS2
970N/A# elif defined(RT_OS_DARWIN)
970N/A# define CONFIG_DARWIN
970N/A# elif defined(RT_OS_FREEBSD) || defined(RT_OS_NETBSD) || defined(RT_OS_OPENBSD)
1003N/A/*# define CONFIG_BSD*/
1356N/A# elif defined(RT_OS_SOLARIS)
1666N/A# define CONFIG_SOLARIS
970N/A# elif !defined(IPRT_NO_CRT)
970N/A# define HAVE_BYTESWAP_H 1
970N/A# endif
970N/A#endif
1391N/A#define QEMU_VERSION "0.8.1"
1391N/A#define CONFIG_UNAME_RELEASE ""
1549N/A#define CONFIG_QEMU_SHAREDIR "."
1549N/A
1666N/A