blob: 62f7274167e153af4719aa04d33d6f9e432dfbe3 (
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
|
$NetBSD: patch-ab,v 1.1 2005/07/17 21:38:45 kristerw Exp $
--- Configure.orig 2005-07-17 23:11:53.000000000 +0200
+++ Configure 2005-07-17 23:13:20.000000000 +0200
@@ -150,14 +150,15 @@
echo
-echo Checking for /usr/include/termios.h
-if [ -f /usr/include/termios.h ]; then
- echo "-DUSE_TERMIOS" >> configuration
- echo "Yes, it is there"
-else
- # No termios
- echo "No, it is not there"
-fi;
+# The pkg uses unportable termios.h stuff, so disable it.
+#echo Checking for /usr/include/termios.h
+#if [ -f /usr/include/termios.h ]; then
+# echo "-DUSE_TERMIOS" >> configuration
+# echo "Yes, it is there"
+#else
+# # No termios
+# echo "No, it is not there"
+#fi;
if [ -f /usr/lib/libc.dylib ]; then
|