Imported Upstream version 1.15.1
[deb_xorg-server.git] / hw / xfree86 / loader / os.c
CommitLineData
a09e091a
JB
1/*
2 * Copyright (c) 1999-2002 by The XFree86 Project, Inc.
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
13 *
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
18 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20 * OTHER DEALINGS IN THE SOFTWARE.
21 *
22 * Except as contained in this notice, the name of the copyright holder(s)
23 * and author(s) shall not be used in advertising or otherwise to promote
24 * the sale, use or other dealings in this Software without prior written
25 * authorization from the copyright holder(s) and author(s).
26 */
27
28#ifdef HAVE_XORG_CONFIG_H
29#include <xorg-config.h>
30#endif
31
32#include "loaderProcs.h"
33
34/*
35 * OSNAME is a standard form of the OS name that may be used by the
36 * loader and by OS-specific modules. OSNAME here is different from what's in
37 * dix-config.h
38 */
39
40#undef OSNAME
41#if defined(__linux__)
42#define OSNAME "linux"
43#elif defined(__FreeBSD__)
44#define OSNAME "freebsd"
45#elif defined(__DragonFly__)
46#define OSNAME "dragonfly"
47#elif defined(__NetBSD__)
48#define OSNAME "netbsd"
49#elif defined(__OpenBSD__)
50#define OSNAME "openbsd"
51#elif defined(__GNU__)
52#define OSNAME "hurd"
53#elif defined(SVR4) && defined(sun)
54#define OSNAME "solaris"
55#elif defined(SVR5)
56#define OSNAME "svr5"
57#elif defined(SVR4)
58#define OSNAME "svr4"
59#else
60#define OSNAME "unknown"
61#endif
62
63/* Return the OS name, and run-time OS version */
64
65void
66LoaderGetOS(const char **name, int *major, int *minor, int *teeny)
67{
68 if (name)
69 *name = OSNAME;
70
71 /* reporting runtime versions isn't supported yet */
72}