@@ -38,7 +38,7 @@ To remedy the problem, install the developer package for Python
3838corresponding to the Python runtime package you have installed. What the
3939name of the developer package is can vary from one Linux distribution to
4040another. Normally it has the same name as the Python runtime package with
41- ' -dev' appended to the package name. You will need to lookup up list of
41+ `` -dev `` appended to the package name. You will need to lookup up list of
4242available packages in your packaging system to determine actual name of
4343package to install.
4444
@@ -90,7 +90,7 @@ this is not present then mod_wsgi is using a static Python library.
9090Although mod_wsgi will still work when compiled against a version of Python
9191which only provides a static library, you are highly encouraged to ensure
9292that your Python installation has been configured and compiled with the
93- ' --enable-shared' option to enable the production and use of a shared
93+ `` --enable-shared `` option to enable the production and use of a shared
9494library for Python.
9595
9696If rebuilding Python to generate a shared library, do make sure that the
@@ -143,7 +143,7 @@ Multiple Python Versions
143143------------------------
144144
145145Where there are multiple versions of Python installed on a system and it is
146- necessary to ensure that a specific version is used, the ' --with-python'
146+ necessary to ensure that a specific version is used, the `` --with-python ``
147147option can be supplied to 'configure' when installing mod_wsgi::
148148
149149 ./configure --with-python=/usr/local/bin/python2.5
@@ -202,7 +202,7 @@ used, is located. This can be done using the WSGIPythonHome directive::
202202
203203The value given to the WSGIPythonHome directive should be a normalised
204204path corresponding to that defined by the Python {{{sys.prefix}}} variable
205- for the version of Python being used and passed to the ' --with-python'
205+ for the version of Python being used and passed to the `` --with-python ``
206206option when configuring mod_wsgi::
207207
208208 >>> import sys
@@ -258,12 +258,12 @@ The warning is indicating that a newer version of Python is now being
258258used than what mod_wsgi was originally compiled for.
259259
260260This would generally not be a problem provided that both versions of Python
261- were originally installed with the ' --enable-shared' option supplied to
261+ were originally installed with the `` --enable-shared `` option supplied to
262262'configure'. If this option is used then the Python library will be linked
263263in dynamically at runtime and so an upgrade to the Python version will be
264264automatically used.
265265
266- If ' --enable-shared' was however not used and the Python library is
266+ If `` --enable-shared `` was however not used and the Python library is
267267therefore embedded into the actual mod_wsgi Apache module, then there is a
268268risk of undefined behaviour. This is because the version of the Python
269269library embedded into the mod_wsgi Apache module will be older than the
@@ -304,7 +304,7 @@ bit static library in all cases.
304304
305305If the first issue, the only solution to this problem is to recompile
306306Python for the X86 64 bit architecture. When doing this, it is preferable,
307- and may actually be necessary, to ensure that the ' --enable-shared' option
307+ and may actually be necessary, to ensure that the `` --enable-shared `` option
308308is provided to the 'configure' script for Python when it is being compiled
309309and installed.
310310
@@ -406,9 +406,9 @@ The error encountered would be similar to::
406406 load /etc/httpd/modules/mod_wsgi.so into server: \
407407 /etc/httpd/modules/mod_wsgi.so: undefined symbol: forkpty
408408
409- This problem can be fixed by adding ' -lutil' to the list of libraries to
409+ This problem can be fixed by adding `` -lutil `` to the list of libraries to
410410link mod_wsgi against when it is being built. This can be done by adding
411- ' -lutil' to the 'LDLIBS' variable in the mod_wsgi 'Makefile' after having
411+ `` -lutil `` to the 'LDLIBS' variable in the mod_wsgi 'Makefile' after having
412412run 'configure'.
413413
414414An alternative method which may work is to edit the 'envvars' file, if it
@@ -440,7 +440,7 @@ are::
440440 apxs:Error: Command failed with rc=65536
441441
442442To avoid this problem, when configuring mod_wsgi, it is necessary to use
443- the " --with-apxs" option to designate that either "apxs2-worker" or
443+ the `` --with-apxs `` option to designate that either "apxs2-worker" or
444444"apxs2-prefork" should be used. Thus::
445445
446446 ./configure --with-apxs=/usr/sbin/apxs2-worker
@@ -468,9 +468,9 @@ configured for maintainer mode::
468468 qualifiers from pointer target type
469469
470470Specifically, whoever built the version of Apache being used supplied the
471- option ' --enable-maintainer-mode' when configuring Apache prior to
471+ option `` --enable-maintainer-mode `` when configuring Apache prior to
472472installation. You would be able to tell at the time of compiling mod_wsgi
473- if this has been done as the option ' -DAP_DEBUG' would be supplied to the
473+ if this has been done as the option `` -DAP_DEBUG `` would be supplied to the
474474compiler when mod_wsgi source code is compiled.
475475
476476These warnings can be ignored, but in general you shouldn't run Apache in
0 commit comments