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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
|
$NetBSD: patch-ac,v 1.5 2006/06/21 15:52:33 joerg Exp $
--- Configure.orig 2001-02-22 19:17:39.000000000 +0000
+++ Configure
@@ -2540,7 +2540,7 @@ EOM
esac
;;
*) case "$d_inews" in
- '') dflt="$prefix/bin";;
+ '') dflt=none;;
"$define")
set dflt installinews bin
eval $prefixit
@@ -4412,6 +4412,9 @@ case "$nm_so_opt" in
nm_so_opt='--dynamic'
fi
;;
+ *dragonfly*)
+ nm_so_opt='-D'
+ ;;
esac
;;
esac
@@ -6223,14 +6226,14 @@ active='$active'
acttimes='$acttimes'
aphostcmd='$aphostcmd'
archobjs='$archobjs'
-awk='$awk'
-basename='$basename'
+awk='$TOOLS_AWK'
+basename='$TOOLS_BASENAME'
bash='$bash'
bin='$bin'
binexp='$binexp'
byacc='$byacc'
c='$c'
-cat='$cat'
+cat='$TOOLS_CAT'
cc='$cc'
ccflags='$ccflags'
cf_by='$cf_by'
@@ -6240,7 +6243,7 @@ cntrydist='$cntrydist'
comm='$comm'
contains='$contains'
contdist='$contdist'
-cp='$cp'
+cp='$TOOLS_CP'
cpp='$cpp'
cppflags='$cppflags'
cpplast='$cpplast'
@@ -6305,21 +6308,21 @@ d_xenix='$d_xenix'
d_xthread='$d_xthread'
date='$date'
defeditor='$defeditor'
-diff='$diff'
+diff='$TOOLS_DIFF'
direntrytype='$direntrytype'
-echo='$echo'
+echo='$TOOLS_ECHO'
ed='$ed'
-egrep='$egrep'
+egrep='$TOOLS_EGREP'
eunicefix='$eunicefix'
exe_ext='$exe_ext'
-expr='$expr'
+expr='$TOOLS_EXPR'
extrainews='$extrainews'
filexp='$filexp'
find='$find'
firstmakefile='$firstmakefile'
gccversion='$gccversion'
glibpth='$glibpth'
-grep='$grep'
+grep='$TOOLS_GREP'
groupdesc='$groupdesc'
hint='$hint'
hostbits='$hostbits'
@@ -6376,10 +6379,10 @@ mboxchar='$mboxchar'
mimecap='$mimecap'
mips='$mips'
mips_type='$mips_type'
-mkdir='$mkdir'
+mkdir='$TOOLS_MKDIR'
more='$more'
multistatedist='$multistatedist'
-mv='$mv'
+mv='$TOOLS_MV'
myactive='$myactive'
myuname='$myuname'
n='$n'
@@ -6417,11 +6420,11 @@ prefixexp='$prefixexp'
prefshell='$prefshell'
privlib='$privlib'
privlibexp='$privlibexp'
-rm='$rm'
+rm='$TOOLS_RM'
rmail='$rmail'
rootid='$rootid'
runnm='$runnm'
-sed='$sed'
+sed='$TOOLS_SED'
sendmail='$sendmail'
servername='$servername'
sharpbang='$sharpbang'
@@ -6442,7 +6445,7 @@ strings='$strings'
strn='$strn'
subscriptions='$subscriptions'
sysman='$sysman'
-tail='$tail'
+tail='$TOOLS_TAIL'
tee='$tee'
termlib='$termlib'
test='$test'
@@ -6450,7 +6453,7 @@ threaddir='$threaddir'
tk='$tk'
tkinc='$tkinc'
tklibs='$tklibs'
-tr='$tr'
+tr='$TOOLS_TR'
trn_init='$trn_init'
trn_select='$trn_select'
trnl='$trnl'
|