From: Wolfgang Bangerth Date: Mon, 17 Apr 2000 13:07:51 +0000 (+0000) Subject: Fix typos. X-Git-Tag: v8.0.0~20664 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=45a0593f75404ff23eb4883ddb535340fa1eaa01;p=dealii.git Fix typos. git-svn-id: https://svn.dealii.org/trunk@2731 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/doc/porting.html b/deal.II/doc/porting.html index d9952c52cd..7c1d5aa7a2 100644 --- a/deal.II/doc/porting.html +++ b/deal.II/doc/porting.html @@ -41,10 +41,10 @@ configuration.

Enable/disable configured options

-

Some of the features of the library are turned on and of by +

Some of the features of the library are turned on and off by --enable-xxx and --with-xxx=yyy options to configure. These user-supplied parameters can be changed by modifying -related variables: for example, to turn of shared libraries on aix, +related variables: for example, to turn off shared libraries on aix, enter the following in the operating system case-block

    *-aix*) enableshared=no ;;
@@ -53,15 +53,15 @@ enter the following in the operating system case-block
 
 

Preprocessor variables

-

Some features of the library can be turned on or of by preprocessor +

Some features of the library can be turned on or off by preprocessor symbols. The following commands can be used:

throw_opt=-DNO_THROW
-
Turn of throwing exceptions in optimized mode.
+
Turn off throwing exceptions in optimized mode.
AC_DEFINE(QUIET_SUBSCRIPTOR)
-
Turn of type information in Subscriptor. +
Turn off type information in Subscriptor. Helps to save memory (not much though) and is necessary if your compiler does not implement RTTI.