# HG changeset patch # User jwe # Date 1194629845 0 # Node ID 30c0533e39aee66ec64e5632cff5ea1a46cebcb0 # Parent 732602937a195dd61e0badf5093a84f7136f45cd [project @ 2007-11-09 17:37:24 by jwe] diff -r 732602937a19 -r 30c0533e39ae doc/interpreter/install.txi --- a/doc/interpreter/install.txi Fri Nov 09 17:08:52 2007 +0000 +++ b/doc/interpreter/install.txi Fri Nov 09 17:37:25 2007 +0000 @@ -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 diff -r 732602937a19 -r 30c0533e39ae scripts/ChangeLog --- a/scripts/ChangeLog Fri Nov 09 17:08:52 2007 +0000 +++ b/scripts/ChangeLog Fri Nov 09 17:37:25 2007 +0000 @@ -2,6 +2,10 @@ * plot/patch.m: Correctly handle case of axis handle as first arg. +2007-11-09 Joseph P. Skudlarek + + * sparse/spdiags.m: Tweak documentation entries to match other uses. + 2007-11-08 John W. Eaton * control/base/dcgain.m, control/base/dre.m, diff -r 732602937a19 -r 30c0533e39ae scripts/sparse/spdiags.m --- a/scripts/sparse/spdiags.m Fri Nov 09 17:08:52 2007 +0000 +++ b/scripts/sparse/spdiags.m Fri Nov 09 17:37:25 2007 +0000 @@ -17,10 +17,10 @@ ## . ## -*- 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 diff -r 732602937a19 -r 30c0533e39ae src/ChangeLog --- a/src/ChangeLog Fri Nov 09 17:08:52 2007 +0000 +++ b/src/ChangeLog Fri Nov 09 17:37:25 2007 +0000 @@ -2,6 +2,10 @@ * graphics.cc (is_handle): Handle must be a real scalar. +2007-11-09 Joseph P. Skudlarek + + * data.cc (Fislogical): Fix typo in documentation entry. + 2007-11-08 John W. Eaton * DLD-FUNCTIONS/__gnuplot_raw__.l (F__gnuplot_save_data__): diff -r 732602937a19 -r 30c0533e39ae src/data.cc --- a/src/data.cc Fri Nov 09 17:08:52 2007 +0000 +++ b/src/data.cc Fri Nov 09 17:37:25 2007 +0000 @@ -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") {