30 lines
908 B
Text
30 lines
908 B
Text
$NetBSD: patch-ac,v 1.2 2002/02/19 00:02:29 mycroft Exp $
|
|
|
|
--- Xvnc/config/imake/imakemdep.h.orig Sun Jun 11 12:00:51 2000
|
|
+++ Xvnc/config/imake/imakemdep.h Tue Feb 19 00:00:15 2002
|
|
@@ -253,9 +253,12 @@
|
|
#ifdef _CRAY
|
|
#define DEFAULT_CPP "/lib/pcpp"
|
|
#endif
|
|
-#if defined(__386BSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__FreeBSD__)
|
|
+#if defined(__386BSD__)
|
|
#define DEFAULT_CPP "/usr/libexec/cpp"
|
|
#endif
|
|
+#if defined(__NetBSD__) || defined(__OpenBSD__) || defined(__FreeBSD__)
|
|
+#define USE_CC_E
|
|
+#endif
|
|
#if defined(__sgi) && defined(__ANSI_CPP__)
|
|
#define USE_CC_E
|
|
#endif
|
|
@@ -286,6 +289,11 @@
|
|
* Note that you may define more than one symbol (useful for platforms
|
|
* that support multiple operating systems).
|
|
*/
|
|
+
|
|
+#ifdef __NetBSD__
|
|
+#undef unix
|
|
+#define unix 42
|
|
+#endif
|
|
|
|
#define ARGUMENTS 50 /* number of arguments in various arrays */
|
|
char *cpp_argv[ARGUMENTS] = {
|