blob: df97d2f3a9d9b0e7aa9d48f5659662c82eae375d (
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
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
|
$NetBSD: patch-aa,v 1.1 2003/05/27 21:57:26 jlam Exp $
--- Configure.orig Thu Jul 18 18:55:15 2002
+++ Configure Tue May 27 16:31:15 2003
@@ -1049,6 +1049,8 @@
sitelib=''
sitelib_stem=''
sitelibexp=''
+installsiteman1dir=''
+installsiteman3dir=''
siteprefix=''
siteprefixexp=''
sizesize=''
@@ -7950,6 +7952,17 @@
;;
esac
+case "$installsiteman1dir" in
+'') dflt="$installman1dir" ;;
+*) dflt="$installsiteman1dir" ;;
+esac
+set installsiteman1dir installsiteman1dir none
+eval $prefixit
+fn=d~+
+rp="Where do the site-specific manual pages (source) go?"
+. ./getfile
+installsiteman1dir="$ans"
+
: see if we can have long filenames
echo " "
first=123456789abcdef
@@ -8074,6 +8087,17 @@
;;
esac
+case "$installsiteman3dir" in
+'') dflt="$installman3dir" ;;
+*) dflt="$installsiteman3dir" ;;
+esac
+set installsiteman3dir installsiteman3dir none
+eval $prefixit
+fn=d~+
+rp="Where do the site-specific library man pages (source) go?"
+. ./getfile
+installsiteman3dir="$ans"
+
: see if we have to deal with yellow pages, now NIS.
if $test -d /usr/etc/yp || $test -d /etc/yp || $test -d /usr/lib/yp; then
if $test -f /usr/etc/nibindd; then
@@ -20285,6 +20309,8 @@
installsitearch='$installsitearch'
installsitebin='$installsitebin'
installsitelib='$installsitelib'
+installsiteman1dir='$installsiteman1dir'
+installsiteman3dir='$installsiteman3dir'
installstyle='$installstyle'
installusrbinperl='$installusrbinperl'
installvendorarch='$installvendorarch'
|