~ubuntu-branches/ubuntu/hardy/autoconf-archive/hardy

« back to all changes in this revision

Viewing changes to htmldoc/ac_prog_scp.html

  • Committer: Bazaar Package Importer
  • Author(s): Martin A. Godisch
  • Date: 2004-06-26 09:43:57 UTC
  • Revision ID: james.westby@ubuntu.com-20040626094357-3be3jwcz1vcdhpe8
Tags: upstream-20040616
ImportĀ upstreamĀ versionĀ 20040616

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
 
2
"http://www.w3.org/TR/html4/strict.dtd">
 
3
 
 
4
<html lang="en">
 
5
<head>
 
6
  <title>Autoconf Macro: ac_prog_scp</title>
 
7
  <link rel="stylesheet" type="text/css" href="ac-archive.css">
 
8
</head>
 
9
 
 
10
<body>
 
11
  <table summary="web navigation" style="width:100%;">
 
12
    <tbody>
 
13
      <tr>
 
14
        <td style="width:50%;" align="center">[<a href="index.html">Macro Index
 
15
        Page</a>]</td>
 
16
 
 
17
        <td style="width:50%;" align="center">[<a href=
 
18
        "../m4source/ac_prog_scp.m4">Download M4 Source</a>]</td>
 
19
      </tr>
 
20
    </tbody>
 
21
  </table>
 
22
  <hr>
 
23
 
 
24
  <h1>ac_prog_scp</h1>
 
25
 
 
26
  <h2>Synopsis</h2>
 
27
 
 
28
  <div class="indent">
 
29
    <p style="text-align:left; white-space:nowrap;">
 
30
    <code>AC_PROG_SCP</code></p>
 
31
  </div>
 
32
 
 
33
  <h2>Description</h2>
 
34
 
 
35
  <div class="indent">
 
36
    <p>Check for the program 'scp', let script continue if exists, pops up
 
37
    error message if not.</p>
 
38
 
 
39
    <p>Besides checking existence, this macro also set these environment
 
40
    variables upon completion:</p>
 
41
    <pre>
 
42
    SCP = which scp
 
43
</pre>
 
44
  </div>
 
45
 
 
46
  <h2>Version</h2>
 
47
 
 
48
  <div class="indent">
 
49
    <p>1.1 (last modified: 2002-04-11)</p>
 
50
  </div>
 
51
 
 
52
  <h2>Author</h2>
 
53
 
 
54
  <div class="indent">
 
55
    <p>Gleen Salmon &lt;gleensalmon@yahoo.com&gt;</p>
 
56
  </div>
 
57
 
 
58
  <h2>M4 Source Code</h2>
 
59
 
 
60
  <div class="indent">
 
61
    <pre class="m4source">
 
62
AC_DEFUN([AC_PROG_SCP],[
 
63
AC_REQUIRE([AC_EXEEXT])dnl
 
64
AC_PATH_PROG(SCP, scp$EXEEXT, nocommand)
 
65
if test "$SCP" = nocommand; then
 
66
        AC_MSG_ERROR([scp not found in $PATH])
 
67
fi;dnl
 
68
])
 
69
</pre>
 
70
  </div>
 
71
 
 
72
  <h2>Copyright</h2>
 
73
 
 
74
  <div class="indent">
 
75
    <a href="COPYING.html">GNU General Public License</a> with this special
 
76
    <a href="COPYING-Exception.html">exception</a>.
 
77
  </div>
 
78
</body>
 
79
</html>