~ubuntu-branches/ubuntu/lucid/autoconf-archive/lucid

« back to all changes in this revision

Viewing changes to html/ac_prog_latex.html

  • Committer: Bazaar Package Importer
  • Author(s): Deng Xiyue
  • Date: 2009-05-12 17:30:18 UTC
  • mfrom: (1.1.9 upstream) (3.1.4 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090512173018-s7y88nfoxpaauztk
Tags: 20090426-1
* New upstream release.
* Update Standard-Version to 3.8.1:
  + List original Debianizer.
  + Point to versioned license file.

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
 
<html lang="en">
4
 
 <head>
5
 
  <title>
6
 
   Autoconf Macro: ac_prog_latex
7
 
  </title>
8
 
  <link rel="stylesheet" type="text/css" href="autoconf-archive.css">
9
 
 </head>
10
 
 <body>
11
 
  <table summary="web navigation" style="width:100%;">
12
 
   <tbody>
13
 
    <tr>
14
 
     <td style="width:25%;" align="center" valign="top">
15
 
      <a href="http://autoconf-archive.cryp.to/ac_prog_latex.m4">Download M4
16
 
      Source</a>
17
 
     </td>
18
 
     <td style="width:25%;" align="center" valign="top">
19
 
      <a href=
20
 
      "http://git.cryp.to/autoconf-archive?a=history;f=ac_prog_latex.m4">Macro
21
 
      History</a>
22
 
     </td>
23
 
     <td style="width:25%;" align="center" valign="top">
24
 
      <a href="macros-by-category.html">Category Index</a>
25
 
     </td>
26
 
     <td style="width:25%;" align="center" valign="top">
27
 
      <form method="get" action="http://www.google.com/search">
28
 
       <div>
29
 
        <input name="sitesearch" value="autoconf-archive.cryp.to" type=
30
 
        "hidden"><a href="http://www.google.com/">Search</a>: <input name="q"
31
 
        size="10" maxlength="255" type="text">
32
 
       </div>
33
 
      </form>
34
 
     </td>
35
 
    </tr>
36
 
   </tbody>
37
 
  </table>
38
 
  <hr>
39
 
  <h1>
40
 
   ac_prog_latex
41
 
  </h1>
42
 
  <h2>
43
 
   Obsolete Macro
44
 
  </h2>
45
 
  <p class="indent">
46
 
   Replaced by <a href="acltx_prog_latex.html">ACLTX_PROG_LATEX</a>.
47
 
  </p>
48
 
  <h2>
49
 
   Synopsis
50
 
  </h2>
51
 
  <p class="indent" style="white-space:nowrap;">
52
 
   <code>AC_PROG_LATEX</code>
53
 
  </p>
54
 
  <h2>
55
 
   Description
56
 
  </h2>
57
 
  <div class="indent">
58
 
   <p>
59
 
    This macro test if latex is installed. If latex is installed, it set $latex
60
 
    to the right value
61
 
   </p>
62
 
  </div>
63
 
  <h2>
64
 
   Author
65
 
  </h2>
66
 
  <p class="indent">
67
 
   Mathieu Boretti &lt;boretti@eig.unige.ch&gt;
68
 
  </p>
69
 
  <h2>
70
 
   Last Modified
71
 
  </h2>
72
 
  <p class="indent">
73
 
   2008-04-12
74
 
  </p>
75
 
  <h2>
76
 
   M4 Source Code
77
 
  </h2>
78
 
  <div class="indent">
79
 
   <pre class="m4source">
80
 
AC_DEFUN([AC_PROG_LATEX],[
81
 
AC_CHECK_PROGS(latex,[latex elatex lambda],no)
82
 
export latex;
83
 
if test $latex = "no" ;
84
 
then
85
 
        AC_MSG_ERROR([Unable to find a LaTeX application]);
86
 
fi
87
 
AC_SUBST(latex)
88
 
])
89
 
</pre>
90
 
  </div>
91
 
  <h2>
92
 
   License
93
 
  </h2>
94
 
  <div class="indent">
95
 
   <span style="white-space:nowrap;">Copyright &copy; 2008 Mathieu Boretti
96
 
   &lt;boretti@eig.unige.ch&gt;</span>
97
 
   <p>
98
 
    This program is free software; you can redistribute it and/or modify it
99
 
    under the terms of the GNU General Public License as published by the Free
100
 
    Software Foundation; either version 2 of the License, or (at your option)
101
 
    any later version.
102
 
   </p>
103
 
   <p>
104
 
    This program is distributed in the hope that it will be useful, but WITHOUT
105
 
    ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
106
 
    FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
107
 
    more details.
108
 
   </p>
109
 
   <p>
110
 
    You should have received a copy of the GNU General Public License along
111
 
    with this program. If not, see &lt;<a href=
112
 
    "http://www.gnu.org/licenses/">http://www.gnu.org/licenses/</a>&gt;.
113
 
   </p>
114
 
   <p>
115
 
    As a special exception, the respective Autoconf Macro's copyright owner
116
 
    gives unlimited permission to copy, distribute and modify the configure
117
 
    scripts that are the output of Autoconf when processing the Macro. You need
118
 
    not follow the terms of the GNU General Public License when using or
119
 
    distributing such scripts, even though portions of the text of the Macro
120
 
    appear in them. The GNU General Public License (GPL) does govern all other
121
 
    use of the material that constitutes the Autoconf Macro.
122
 
   </p>
123
 
   <p>
124
 
    This special exception to the GPL applies to versions of the Autoconf Macro
125
 
    released by the Autoconf Macro Archive. When you make and distribute a
126
 
    modified version of the Autoconf Macro, you may extend this special
127
 
    exception to the GPL to apply to your modified version as well.
128
 
   </p>
129
 
  </div>
130
 
 </body>
131
 
</html>