blob: 37506fb6b66e5aacfd5843cd02e0192b4f9fd880 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
/* cfg.h
* (c) 2002 Mikulas Patocka
* This file is a part of the Links program, released under GPL.
*/
#ifndef CFG_H
#define CFG_H
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#ifdef HAVE_CONFIG2_H
#include "config2.h"
#endif
/* no one will probably ever port svgalib on atheos or beos or port atheos
interface to beos, but anyway: make sure they don't clash */
#if defined(__BEOS__) || defined(__HAIKU__)
#ifdef GRDRV_SVGALIB
#undef GRDRV_SVGALIB
#endif
#ifdef GRDRV_ATHEOS
#undef GRDRV_ATHEOS
#endif
#endif
#ifdef GRDRV_ATHEOS
#ifdef GRDRV_SVGALIB
#undef GRDRV_SVGALIB
#endif
#endif
typedef int cfg_h_no_empty_unit;
#endif
|