changeset 7144:30c0533e39ae

[project @ 2007-11-09 17:37:24 by jwe]
author jwe
date Fri, 09 Nov 2007 17:37:25 +0000
parents 732602937a19
children d169c9f4a697
files doc/interpreter/install.txi scripts/ChangeLog scripts/sparse/spdiags.m src/ChangeLog src/data.cc
diffstat 5 files changed, 29 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/doc/interpreter/install.txi
+++ b/doc/interpreter/install.txi
@@ -33,6 +33,10 @@
 under the terms of the GNU General Public License as published by the
 Free Software Foundation.
 
+@strong{Note:} This file is automatically generated from
+@file{doc/interpreter/install.txi} in the Octave sources, so to make
+changes to this documenation file, change that source file.
+
 @node Installation
 @chapter Installing Octave
 @end ifset
@@ -466,4 +470,16 @@
 modify Octave's configuration script to automatically determine the
 proper thing to do.
 
+@item
+If Octave is unable to find a header file because it is installed in a
+location that is not normally searched by the compiler, you can add the
+directory to the include search path by specifying (for example)
+@code{CPPFLAGS=-I/some/nonstandard/directory} as an argument to
+@code{configure}.  Other variables that can be specified this way are
+@code{CFLAGS}, @code{CXXFLAGS}, @code{FFLAGS}, and @code{LDFLAGS}.
+Passing them as options to the configure script also records them in the
+@file{config.status} file.  By default, @code{CPPFLAGS} and
+@code{LDFLAGS} are empty, @code{CFLAGS} and @code{CXXFLAGS} are set to
+@code{"-g -O"} and @code{FFLAGS} is set to @code{"-O"}.
+
 @end itemize
--- a/scripts/ChangeLog
+++ b/scripts/ChangeLog
@@ -2,6 +2,10 @@
 
 	* plot/patch.m: Correctly handle case of axis handle as first arg.
 
+2007-11-09  Joseph P. Skudlarek  <Jskud@Jskud.com>
+
+	* sparse/spdiags.m: Tweak documentation entries to match other uses.
+
 2007-11-08  John W. Eaton  <jwe@octave.org>
 
 	* control/base/dcgain.m, control/base/dre.m,
--- a/scripts/sparse/spdiags.m
+++ b/scripts/sparse/spdiags.m
@@ -17,10 +17,10 @@
 ## <http://www.gnu.org/licenses/>.
 
 ## -*- texinfo -*-
-## @deftypefn {function File} {[@var{b}, @var{c}] =} spdiags (@var{a})
-## @deftypefnx {function File} {@var{b} =} spdiags (@var{a}, @var{c})
-## @deftypefnx {function File} {@var{b} =} spdiags (@var{v}, @var{c}, @var{a})
-## @deftypefnx {function File} {@var{b} =} spdiags (@var{v}, @var{c}, @var{m}, @var{n})
+## @deftypefn {Function File} {[@var{b}, @var{c}] =} spdiags (@var{a})
+## @deftypefnx {Function File} {@var{b} =} spdiags (@var{a}, @var{c})
+## @deftypefnx {Function File} {@var{b} =} spdiags (@var{v}, @var{c}, @var{a})
+## @deftypefnx {Function File} {@var{b} =} spdiags (@var{v}, @var{c}, @var{m}, @var{n})
 ## A generalization of the function @code{spdiag}. Called with a single
 ## input argument, the non-zero diagonals @var{c} of @var{A} are extracted.
 ## With two arguments the diagonals to extract are given by the vector 
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -2,6 +2,10 @@
 
 	* graphics.cc (is_handle): Handle must be a real scalar.
 
+2007-11-09  Joseph P. Skudlarek  <Jskud@Jskud.com>
+
+	* data.cc (Fislogical): Fix typo in documentation entry.
+
 2007-11-08  John W. Eaton  <jwe@octave.org>
 
 	* DLD-FUNCTIONS/__gnuplot_raw__.l (F__gnuplot_save_data__):
--- a/src/data.cc
+++ b/src/data.cc
@@ -1371,7 +1371,7 @@
 
 DEFUN (islogical, args, ,
   "-*- texinfo -*-\n\
-@deftypefn {Built-in Functio} {} islogical (@var{x})\n\
+@deftypefn {Built-in Function} {} islogical (@var{x})\n\
 Return true if @var{x} is a logical object.\n\
 @end deftypefn")
 {