summaryrefslogtreecommitdiff
path: root/cfg.h
diff options
context:
space:
mode:
authorAnas Nashif <anas.nashif@intel.com>2012-12-07 02:53:31 -0800
committerAnas Nashif <anas.nashif@intel.com>2012-12-07 02:53:31 -0800
commitcbb6286cb92020dd7ae88798ed831ed76fd2130e (patch)
tree782a01c00d5e064aa67ea3f9241a8ef1de1060c6 /cfg.h
downloadlinks-cbb6286cb92020dd7ae88798ed831ed76fd2130e.tar.gz
links-cbb6286cb92020dd7ae88798ed831ed76fd2130e.tar.bz2
links-cbb6286cb92020dd7ae88798ed831ed76fd2130e.zip
Imported Upstream version 2.6upstream/2.6upstream
Diffstat (limited to 'cfg.h')
-rw-r--r--cfg.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/cfg.h b/cfg.h
new file mode 100644
index 0000000..37506fb
--- /dev/null
+++ b/cfg.h
@@ -0,0 +1,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