blob: e612ed7388dc0c7ca60b949f61e489c3228e098b (
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
|
$NetBSD: patch-aa,v 1.5 2000/05/22 00:49:53 hubertf Exp $
--- build.netbsd.orig Mon May 22 01:48:50 2000
+++ build.netbsd Mon May 22 01:58:16 2000
@@ -4,7 +4,7 @@
echo Compiling VSLIB...
cd vslib
-make CCDEF="-I${LOCALBASE}/include"
+make CCDEF="-I${LOCALBASE}/include" LDDEF="-Wl,-R${PREFIX}/lib -L${PREFIX}/lib"
if [ -e libvslib.a ]; then
echo VSLIB compiled ok.
else
@@ -26,10 +26,10 @@
echo Compiling ftparc...
cd ftparc
-make
+make CCDEF="-I${LOCALBASE}/include -D__unix__" LDDEF="-Wl,-R${PREFIX}/lib -L${PREFIX}/lib"
if [ -e ftparc ]; then
echo ftparc compiled ok.
else
echo ftparc compilation failed...
fi
|