blob: 7a154c64480d6eee77b614f137bf082cee5cf1b3 (
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
|
$NetBSD: patch-aa,v 1.2 2003/03/08 03:15:51 jmc Exp $
--- configure.in.orig Sun Jan 14 08:23:50 2001
+++ configure.in Fri Apr 5 22:31:14 2002
@@ -147,6 +147,10 @@
TARGET=freebsd
;;
+ *netbsd* )
+ TARGET=netbsd
+ ;;
+
i*86-*-linux* )
TARGET=linux
;;
@@ -349,6 +353,11 @@
powerpc-*-linux* )
# egcs still broken on ppc
TWIN_CFLAGS=-g
+ ;;
+
+ *netbsd* )
+ LIBTWIN_LDFLAGS="$LDFLAGS $LIBTWIN_LDFLAGS"
+ DLL_LDFLAGS="$LDFLAGS $DLL_LDFLAGS"
;;
esac
|