diff options
author | Adam Jackson <ajax@theobromine.nwnk.net> | 2006-06-19 00:57:18 -0400 |
---|---|---|
committer | Adam Jackson <ajax@theobromine.nwnk.net> | 2006-06-19 00:57:18 -0400 |
commit | a28652f9c35fbc009245382a5cc2a022f42366fc (patch) | |
tree | a4ecb795533e87018b282d6d40a07db99560a5e2 /hw/xfree86/loader/os.c | |
parent | 98a602fab1f307a07a96868d7dae12b6f8d7f405 (diff) |
Another round of loader sense-beating. Remove the (unused) server export
lists, a really bad hash table, the last vestiges of the other backends,
and some miscellaneous cleanups. Good for dropping 300k from the size of
the built server on x86.
Diffstat (limited to 'hw/xfree86/loader/os.c')
-rw-r--r-- | hw/xfree86/loader/os.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/xfree86/loader/os.c b/hw/xfree86/loader/os.c index 4274200c3..42ab0bc70 100644 --- a/hw/xfree86/loader/os.c +++ b/hw/xfree86/loader/os.c @@ -1,5 +1,3 @@ -/* $XFree86: xc/programs/Xserver/hw/xfree86/loader/os.c,v 1.4 2003/10/15 16:29:04 dawes Exp $ */ - /* * Copyright (c) 1999-2002 by The XFree86 Project, Inc. * @@ -38,6 +36,7 @@ * loader and by OS-specific modules. */ +#ifndef OSNAME #if defined(__linux__) #define OSNAME "linux" #elif defined(__FreeBSD__) @@ -67,6 +66,7 @@ #else #define OSNAME "unknown" #endif +#endif /* Return the OS name, and run-time OS version */ |