Revision: 51790
http://brlcad.svn.sourceforge.net/brlcad/?rev=51790&view=rev
Author: carlmoore
Date: 2012-08-07 20:07:08 +0000 (Tue, 07 Aug 2012)
Log Message:
-----------
remove trailing blanks and fix spellings
Modified Paths:
--------------
brlcad/trunk/INSTALL
Modified: brlcad/trunk/INSTALL
===================================================================
--- brlcad/trunk/INSTALL 2012-08-07 20:05:08 UTC (rev 51789)
+++ brlcad/trunk/INSTALL 2012-08-07 20:07:08 UTC (rev 51790)
@@ -20,7 +20,7 @@
doc/README.Solaris -- Oracle Solaris, OpenIndiana (Illumos), etc.
doc/README.Windows -- Microsoft Windows
doc/README.VAX -- Virtual Address eXtension architecture from DEC.
- One of the original BRL-CAD platforms. These
+ One of the original BRL-CAD platforms. These
days, re-created using the simh simulator.
@@ -53,7 +53,7 @@
below. The rest of this quick installation section is only relevant
to source code distributions of BRL-CAD.
-For the impatient or simplistic, the following steps should compile,
+For the impatient or simplistic, the following steps should compile,
test, and install an optimized BRL-CAD quickly into the /usr/brlcad/rel-X.Y.Z
directory if CMake is installed on your system:
@@ -90,8 +90,8 @@
----------------------
There are a variety of different kinds of binary distributions of
-BRL-CAD. Some of the binary disributions are sufficiently generic and
-are simply a binary commpressed tarball distribution. Others are
+BRL-CAD. Some of the binary distributions are sufficiently generic and
+are simply a binary compressed tarball distribution. Others are
specific to a particular platform such as Debian, Mac OS X, FreeBSD,
and Windows etc.
@@ -111,13 +111,13 @@
Of course, there are other compression options possible including zip
and bzip2. By default, BRL-CAD expects to be installed into
-/usr/brlcad/rel-7.2.4. On some platforms the binary may be relocatable,
-but this is not guaranteed. It's recommended that you start from a source
+/usr/brlcad/rel-7.2.4. On some platforms the binary may be relocatable,
+but this is not guaranteed. It's recommended that you start from a source
distribution if you would like to install into an alternate installation
-location. That said, if you do desire to install and/or run BRL-CAD from
+location. That said, if you do desire to install and/or run BRL-CAD from
a different location, give it a try...on some platforms it will work.
-Something to be aware of, even if a binary distribution IS relocatable:
+Something to be aware of, even if a binary distribution IS relocatable:
it will use its local copies of things like libraries only so long as the
"final" installed target directory that the build was compiled for
does not contain a BRL-CAD installation. Due to the way path logic
@@ -161,19 +161,19 @@
to go about selecting which options are appropriate for you.
By default, the default configuration will prepare the build system
-to perform a Debug build and install into the /usr/brlcad/dev-X.Y.Z
-directory. The CMAKE_INSTALL_PREFIX option may be used to change
-that directory, or a Release build type may be specified to install to
+to perform a Debug build and install into the /usr/brlcad/dev-X.Y.Z
+directory. The CMAKE_INSTALL_PREFIX option may be used to change
+that directory, or a Release build type may be specified to install to
/usr/brlcad/rel-X.Y.Z - more on this below. The
tradition of non-system installation paths goes back a couple of decades
-and is a convenient means to isolate the BRL-CAD solid modeling
-system from your system, resolves conflicts, facilitates uninstalls,
-and simplifies upgrades. The default configuration is performed by
-running `cmake'. It is not required to do the build in a directory
-different from your source directory, but it is much cleaner and
-*highly* recommended - this guide will illustrate the build process
-with the assumption that the BRL-CAD source code is in the directory
-brlcad-7.2.4 and the directory intended to hold the build output is
+and is a convenient means to isolate the BRL-CAD solid modeling
+system from your system, resolves conflicts, facilitates uninstalls,
+and simplifies upgrades. The default configuration is performed by
+running `cmake'. It is not required to do the build in a directory
+different from your source directory, but it is much cleaner and
+*highly* recommended - this guide will illustrate the build process
+with the assumption that the BRL-CAD source code is in the directory
+brlcad-7.2.4 and the directory intended to hold the build output is
brlcad-build, located in the same parent directory as brlcad-7.2.4:
.
@@ -192,8 +192,8 @@
* Debug (-DCMAKE_BUILD_TYPE=Debug) - Debug is the configuration that most
developers will want to use when working on BRL-CAD. It will add
debug flags to the compile, and sets the default install directory to
- be /usr/brlcad/dev-X.Y.Z - in order to run the resulting installed
- binaries, the developer should ensure that the dev-X.Y.Z path is
+ be /usr/brlcad/dev-X.Y.Z - in order to run the resulting installed
+ binaries, the developer should ensure that the dev-X.Y.Z path is
first in their PATH environment variable.
* Release (-DCMAKE_BUILD_TYPE=Release) - A release build is intended for
@@ -213,12 +213,12 @@
jove. However, BRL-CAD does require and include several 3rd party
components. If your system does not include a sufficient version of
those required 3rd party components, they will be automatically
-configured for compilation.
+configured for compilation.
If the autodetection mechanisms fail to produce a working configuration,
the next simplest approach is typically to enable ALL the third party
components - this is typically a well tested configuration, but will
-increase both the build time and final install size of BRL-CAD on
+increase both the build time and final install size of BRL-CAD on
the system. To set this variable on the command line, use -D to
define BRLCAD_BUNDLED_LIBS for CMake:
@@ -226,15 +226,15 @@
If the graphical interface (cmake-gui) is in use, it will list this
and other common options by default, allowing the user change them
-graphically. This is often quicker and more convenient than
+graphically. This is often quicker and more convenient than
defining options on the command line, but both will work.
-You can also force on or off any individual 3rd party library by
+You can also force on or off any individual 3rd party library by
setting the BRL-CAD variable for that feature to either on or off:
-DBRLCAD_<LIBRARY>=ON
-Other variables control BRL-CAD features. For example, to NOT
+Other variables control BRL-CAD features. For example, to NOT
enable functionality using OpenGL, set
-DBRLCAD_ENABLE_OPENGL=OFF
@@ -264,10 +264,10 @@
The build system will use the first file defined that exists.
-Once configured, you should be able to succesfully build BRL-CAD via
+Once configured, you should be able to successfully build BRL-CAD via
make:
- make
+ make
(On multicore systems, adding the -j flag (e.g. -j6) is recommended)
@@ -290,8 +290,8 @@
---------------------
To test BRL-CAD before installation, you can run the BRL-CAD benchmark.
-The benchmark will report if the results are correct, testing a
-majority of the core functionality of BRL-CAD in addition to testing
+The benchmark will report if the results are correct, testing a
+majority of the core functionality of BRL-CAD in addition to testing
your system's performance:
make benchmark
@@ -422,7 +422,7 @@
Option for enabling and disabling compilation of the Regular Expression Library
provided with BRL-CAD's source distribution. Default is AUTO, responsive to
the
-toplevel BRLCAD_BUNDLED_LIBS option and testing first for a system version if
+toplevel BRLCAD_BUNDLED_LIBS option and testing first for a system version if
BRLCAD_BUNDLED_LIBS is also AUTO.
Aliases: ENABLE_REGEX
@@ -432,7 +432,7 @@
Option for enabling and disabling compilation of the zlib
library provided with BRL-CAD's source distribution. Default is AUTO,
responsive to
-the toplevel BRLCAD_BUNDLED_LIBS option and testing first for a system version
if
+the toplevel BRLCAD_BUNDLED_LIBS option and testing first for a system version
if
BRLCAD_BUNDLED_LIBS is also AUTO.
Aliases: ENABLE_ZLIB, ENABLE_LIBZ
@@ -442,7 +442,7 @@
Option for enabling and disabling compilation of the lemon parser
provided with BRL-CAD's source distribution. Default is AUTO, responsive to
the
-toplevel BRLCAD_BUNDLED_LIBS option and testing first for a system version if
+toplevel BRLCAD_BUNDLED_LIBS option and testing first for a system version if
BRLCAD_BUNDLED_LIBS is also AUTO.
Aliases: ENABLE_LEMON
@@ -452,7 +452,7 @@
Option for enabling and disabling compilation of the re2c scanner utility
provided with BRL-CAD's source distribution. Default is AUTO, responsive to
the
-toplevel BRLCAD_BUNDLED_LIBS option and testing first for a system version if
+toplevel BRLCAD_BUNDLED_LIBS option and testing first for a system version if
BRLCAD_BUNDLED_LIBS is also AUTO.
Aliases: ENABLE_RE2C
@@ -462,7 +462,7 @@
Option for enabling and disabling compilation of the perplex scanner generator
provided with BRL-CAD's source distribution. Default is AUTO, responsive to
the
-toplevel BRLCAD_BUNDLED_LIBS option and testing first for a system version if
+toplevel BRLCAD_BUNDLED_LIBS option and testing first for a system version if
BRLCAD_BUNDLED_LIBS is also AUTO. perplex requires a working re2c.
Aliases: ENABLE_PERPLEX
@@ -471,9 +471,9 @@
--- BRLCAD_XSLTPROC ---
Option for enabling and disabling compilation of the xsltproc XML
-transformation utilty provided with BRL-CAD's source distribution. Used
+transformation utilty provided with BRL-CAD's source distribution. Used
for DocBook documentation processing. Default is AUTO, responsive to the
-toplevel BRLCAD_BUNDLED_LIBS option and testing first for a system version if
+toplevel BRLCAD_BUNDLED_LIBS option and testing first for a system version if
BRLCAD_BUNDLED_LIBS is also AUTO. Depends on BRLCAD_EXTRADOCS.
Aliases: ENABLE_XSLTPROC
@@ -482,9 +482,9 @@
--- BRLCAD_XMLLINT ---
Option for enabling and disabling compilation of the xmllint XML
-validation utilty provided with BRL-CAD's source distribution. Used
+validation utilty provided with BRL-CAD's source distribution. Used
for DocBook documentation validation. Default is AUTO, responsive to the
-toplevel BRLCAD_BUNDLED_LIBS option and testing first for a system version if
+toplevel BRLCAD_BUNDLED_LIBS option and testing first for a system version if
BRLCAD_BUNDLED_LIBS is also AUTO.
Aliases: ENABLE_XMLLINT
@@ -494,7 +494,7 @@
Option for enabling and disabling compilation of the termlib library
provided with BRL-CAD's source distribution. Default is AUTO, responsive to
the
-toplevel BRLCAD_BUNDLED_LIBS option and testing first for a system version if
+toplevel BRLCAD_BUNDLED_LIBS option and testing first for a system version if
BRLCAD_BUNDLED_LIBS is also AUTO. (Except when building with Visual Studio,
where it is disabled. Windows does not support the termlib API.)
@@ -505,7 +505,7 @@
Option for enabling and disabling compilation of the Portable Network
Graphics library provided with BRL-CAD's source distribution. Default is
-AUTO, responsive to the toplevel BRLCAD_BUNDLED_LIBS option and testing
+AUTO, responsive to the toplevel BRLCAD_BUNDLED_LIBS option and testing
first for a system version if BRLCAD_BUNDLED_LIBS is also AUTO.
Aliases: ENABLE_PNG
@@ -514,8 +514,8 @@
--- BRLCAD_UTAHRLE ---
Option for enabling and disabling compilation of the Utah Raster Toolkit
-library provided with BRL-CAD's source code. Default is AUTO, responsive
-to the toplevel BRLCAD_BUNDLED_LIBS option and testing first for a system
+library provided with BRL-CAD's source code. Default is AUTO, responsive
+to the toplevel BRLCAD_BUNDLED_LIBS option and testing first for a system
version if BRLCAD_BUNDLED_LIBS is also AUTO.
Aliases: ENABLE_UTAHRLE
@@ -523,9 +523,9 @@
--- BRLCAD_TCL ---
-Option for enabling and disabling compilation of the Tcl library
-provided with BRL-CAD's source code. Default is AUTO, responsive
-to the toplevel BRLCAD_BUNDLED_LIBS option and testing first for
+Option for enabling and disabling compilation of the Tcl library
+provided with BRL-CAD's source code. Default is AUTO, responsive
+to the toplevel BRLCAD_BUNDLED_LIBS option and testing first for
a system version if BRLCAD_BUNDLED_LIBS is also AUTO.
Aliases: ENABLE_TCL
@@ -533,14 +533,14 @@
--- BRLCAD_TK ---
-Option for enabling and disabling compilation of the Tk library
-provided with BRL-CAD's source code. Default is AUTO, responsive
-to the BRLCAD_TCL option and testing first for
+Option for enabling and disabling compilation of the Tk library
+provided with BRL-CAD's source code. Default is AUTO, responsive
+to the BRLCAD_TCL option and testing first for
a system version if BRLCAD_BUNDLED_LIBS is also AUTO.
Option for enabling and disabling compilation of the Tk graphics package for
Tcl provided with BRL-CAD's source distribution. Default is AUTO,
-auto-enabling if the BRLCAD_TCL option is set to BUNDLED and testing first for
-a system version if BRLCAD_TCL is set to AUTO or SYSTEM. If BRLCAD_TK is
+auto-enabling if the BRLCAD_TCL option is set to BUNDLED and testing first for
+a system version if BRLCAD_TCL is set to AUTO or SYSTEM. If BRLCAD_TK is
set to BUNDLED, local copy is built even if a system version is present.
This option also depends on BRLCAD_ENABLE_TK being ON.
@@ -551,8 +551,8 @@
Option for enabling and disabling compilation of the IncrTcl package for
Tcl objects provided with BRL-CAD's source distribution. Default is AUTO,
-auto-enabling if the BRLCAD_TCL option is set to BUNDLED and testing first for
-a system version if BRLCAD_TCL is set to AUTO or SYSTEM. If BRLCAD_ITCL is
+auto-enabling if the BRLCAD_TCL option is set to BUNDLED and testing first for
+a system version if BRLCAD_TCL is set to AUTO or SYSTEM. If BRLCAD_ITCL is
set to BUNDLED, local copy is built even if a system version is present.
Aliases: ENABLE_ITCL
@@ -562,8 +562,8 @@
Option for enabling and disabling compilation of the IncrTcl itk package for
Tk objects provided with BRL-CAD's source distribution. Default is AUTO,
-auto-enabling if the BRLCAD_TCL option is set to BUNDLED and testing first for
-a system version if BRLCAD_TCL is set to AUTO or SYSTEM. If BRLCAD_ITCL is
+auto-enabling if the BRLCAD_TCL option is set to BUNDLED and testing first for
+a system version if BRLCAD_TCL is set to AUTO or SYSTEM. If BRLCAD_ITCL is
set to BUNDLED, local copy is built even if a system version is present. This
package will be disabled if BRLCAD_ENABLE_TK is OFF.
@@ -574,10 +574,10 @@
Option for enabling and disabling compilation of the Togl package for
Tcl/Tk OpenGL support provided with BRL-CAD's source distribution. Default is
AUTO,
-auto-enabling if the BRLCAD_TCL option is set to BUNDLED and testing first for
-a system version if BRLCAD_TCL is set to AUTO or SYSTEM. If BRLCAD_ITCL is
+auto-enabling if the BRLCAD_TCL option is set to BUNDLED and testing first for
+a system version if BRLCAD_TCL is set to AUTO or SYSTEM. If BRLCAD_ITCL is
set to BUNDLED, local copy is built even if a system version is present. This
-package will be disabled if either BRLCAD_ENABLE_OPENGL or BRLCAD_ENABLE_TK
+package will be disabled if either BRLCAD_ENABLE_OPENGL or BRLCAD_ENABLE_TK
are OFF.
Aliases: ENABLE_TOGL
@@ -585,11 +585,11 @@
--- BRLCAD_IWIDGETS ---
-Option for enabling and disabling compilation of the IWidgets Tk widget
+Option for enabling and disabling compilation of the IWidgets Tk widget
package provided with BRL-CAD's source distribution. Default is AUTO,
-auto-enabling if the BRLCAD_TCL option is set to BUNDLED and testing first
-for a system version if BRLCAD_TCL is set to AUTO or SYSTEM. If BRLCAD_ITCL
-is set to BUNDLED, local copy is built even if a system version is present.
+auto-enabling if the BRLCAD_TCL option is set to BUNDLED and testing first
+for a system version if BRLCAD_TCL is set to AUTO or SYSTEM. If BRLCAD_ITCL
+is set to BUNDLED, local copy is built even if a system version is present.
This package will be disabled if BRLCAD_ENABLE_TK is OFF.
Aliases: ENABLE_IWIDGETS
@@ -599,9 +599,9 @@
Option for enabling and disabling compilation of the Tkhtml HTML viewing
package provided with BRL-CAD's source distribution. Default is AUTO,
-auto-enabling if the BRLCAD_TCL option is set to BUNDLED and testing first
-for a system version if BRLCAD_TCL is set to AUTO or SYSTEM. If BRLCAD_ITCL
-is set to BUNDLED, local copy is built even if a system version is present.
+auto-enabling if the BRLCAD_TCL option is set to BUNDLED and testing first
+for a system version if BRLCAD_TCL is set to AUTO or SYSTEM. If BRLCAD_ITCL
+is set to BUNDLED, local copy is built even if a system version is present.
This package will be disabled if BRLCAD_ENABLE_TK is OFF.
Aliases: ENABLE_TKHTML
@@ -611,9 +611,9 @@
Option for enabling and disabling compilation of the tkpng PNG image viewing
package provided with BRL-CAD's source distribution. Default is AUTO,
-auto-enabling if the BRLCAD_TCL option is set to BUNDLED and testing first
-for a system version if BRLCAD_TCL is set to AUTO or SYSTEM. If BRLCAD_ITCL
-is set to BUNDLED, local copy is built even if a system version is present.
+auto-enabling if the BRLCAD_TCL option is set to BUNDLED and testing first
+for a system version if BRLCAD_TCL is set to AUTO or SYSTEM. If BRLCAD_ITCL
+is set to BUNDLED, local copy is built even if a system version is present.
This package will be disabled if BRLCAD_ENABLE_TK is OFF.
Aliases: ENABLE_TKPNG
@@ -623,9 +623,9 @@
Option for enabling and disabling compilation of the Tktable graphical table
widget package provided with BRL-CAD's source distribution. Default is AUTO,
-auto-enabling if the BRLCAD_TCL option is set to BUNDLED and testing first
-for a system version if BRLCAD_TCL is set to AUTO or SYSTEM. If BRLCAD_ITCL
-is set to BUNDLED, local copy is built even if a system version is present.
+auto-enabling if the BRLCAD_TCL option is set to BUNDLED and testing first
+for a system version if BRLCAD_TCL is set to AUTO or SYSTEM. If BRLCAD_ITCL
+is set to BUNDLED, local copy is built even if a system version is present.
This package will be disabled if BRLCAD_ENABLE_TK is OFF.
Aliases: ENABLE_TKTABLE
@@ -635,7 +635,7 @@
Option for enabling and disabling compilation of the openNURBS
library provided with BRL-CAD's source code. Default is
-AUTO, responsive to the toplevel BRLCAD_BUNDLED_LIBS option and
+AUTO, responsive to the toplevel BRLCAD_BUNDLED_LIBS option and
testing first for a system version if BRLCAD_BUNDLED_LIBS is also AUTO.
Aliases: ENABLE_OPENNURBS
@@ -645,7 +645,7 @@
Option for enabling and disabling compilation of the NIST Step Class
Libraries provided with BRL-CAD's source code. Default is
-AUTO, responsive to the toplevel BRLCAD_BUNDLED_LIBS option and testing
+AUTO, responsive to the toplevel BRLCAD_BUNDLED_LIBS option and testing
first for a system version if BRLCAD_BUNDLED_LIBS is also AUTO.
Aliases: ENABLE_SCL, ENABLE_STEP, ENABLE_STEP_CLASS_LIBRARIES
This was sent by the SourceForge.net collaborative development platform, the
world's largest Open Source development site.
------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and
threat landscape has changed and how IT managers can respond. Discussions
will include endpoint security, mobile security and the latest in malware
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits