blob: a6136663d312eae682b36dc5e396f19be07ebec1 (
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
|
$NetBSD: patch-aa,v 1.4 2001/06/20 12:58:56 jtb Exp $
--- configure.orig Wed Jun 20 04:20:56 2001
+++ configure
@@ -528,15 +528,6 @@
# install with prefix=/usr/local/plplot or prefix=/usr and also installation
# of plplot with debs or rpm's (where plplot is installed with prefix=/usr).
-incdirs="\
- /usr \
- /usr/local/plplot"
-for dir in $incdirs; do
- if test -r "$dir/bin/plplot-config"; then
- PLPLOT_PREFIX="$dir"
- break
- fi
-done
if test -z "$PLPLOT_PREFIX"; then
echo "$ac_t""ERROR: configuration cannot continue because plplot" 1>&6
echo "$ac_t""is not installed in one of the standard places." 1>&6
@@ -548,17 +539,6 @@
# This list of directories should cover the common cases of yorick
# rpm package or Debian package install.
-incdirs="\
- /usr/lib/yorick/1.4 \
- /usr/lib/yorick/1.4/i486-debian-linux/"
-for dir in $incdirs; do
-# lib seems to be a common sub-directory for these directories on either
-# rpm or debian systems.
- if test -r "$dir/lib"; then
- YORICK_CONTRIB_PREFIX="$dir"
- break
- fi
-done
if test -z "$YORICK_CONTRIB_PREFIX"; then
echo "$ac_t""ERROR: configuration cannot continue because yorick" 1>&6
echo "$ac_t""is not installed in one of the standard places." 1>&6
|