From 2307bb36f6f105b75d6672da29bf40bc6960e3b6 Mon Sep 17 00:00:00 2001 From: wolf Date: Mon, 17 Apr 2000 13:07:51 +0000 Subject: [PATCH] Fix typos. git-svn-id: https://svn.dealii.org/trunk@2731 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/doc/porting.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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.
-- 2.39.5