You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
774 B
30 lines
774 B
Index: config.X |
|
--- config.X.orig 2015-02-08 11:07:50.774146000 +0100 |
|
+++ config.X 2015-02-09 18:34:24.705451699 +0100 |
|
@@ -221,7 +221,11 @@ |
|
#include <sys/param.h> |
|
#include <sys/types.h> |
|
#ifndef USG |
|
+#ifdef __FreeBSD__ |
|
+#include <dirent.h> |
|
+#else |
|
#include <sys/dir.h> |
|
+#endif |
|
#endif /* USG */ |
|
|
|
#ifndef TERMIOS |
|
Index: ispell.c |
|
--- ispell.c.orig 2005-05-25 16:13:53.000000000 +0200 |
|
+++ ispell.c 2015-02-09 18:34:24.705451699 +0100 |
|
@@ -511,6 +511,11 @@ |
|
#else /* MINIMENU */ |
|
(void) printf ("\t!MINIMENU\n"); |
|
#endif /* MINIMENU */ |
|
+#ifdef NO8BIT |
|
+ (void) printf ("\tNO8BIT\n"); |
|
+#else /* NO8BIT */ |
|
+ (void) printf ("\t!NO8BIT\n"); |
|
+#endif /* NO8BIT */ |
|
(void) printf ("\tMINWORD = %d\n", MINWORD); |
|
#ifdef MSDOS |
|
(void) printf ("\tMSDOS\n");
|
|
|