23 lines
627 B
Plaintext
23 lines
627 B
Plaintext
--- lib/libxview/misc/portable.h.orig 1993-06-29 07:16:34.000000000 +0200
|
|
+++ lib/libxview/misc/portable.h 2003-12-30 01:31:12.000000000 +0100
|
|
@@ -10,6 +10,7 @@
|
|
#ifndef xview_portable_h_DEFINED
|
|
#define xview_portable_h_DEFINED
|
|
|
|
+#include <sys/param.h>
|
|
#include <xview/attr.h>
|
|
|
|
#if defined(__STDC__) || defined(__cplusplus) || defined(c_plusplus)
|
|
@@ -70,7 +71,11 @@ EXTERN_FUNCTION (Attr_avlist copy_va_to_
|
|
#define XV_USE_TERMIOS
|
|
#define XV_USE_SVR4_PTYS
|
|
#else /* SVR4 */
|
|
+#if (defined(BSD) && (BSD >= 199103))
|
|
+#define XV_USE_TERMIOS
|
|
+#else
|
|
#undef XV_USE_TERMIOS
|
|
+#endif
|
|
#undef XV_USE_SVR4_PTYS
|
|
#endif /* SVR4 */
|
|
|