comparison doc/manual.tex @ 1143:a9ba22d551f0

Remove mention of (hopefully) fixed problem with ./configure
author Adam Chlipala <adamc@hcoop.net>
date Sun, 31 Jan 2010 07:44:49 -0500
parents a8921f5ef6bd
children de48dc2c9ee8
comparison
equal deleted inserted replaced
1142:44152f712037 1143:a9ba22d551f0
91 GCCARGS=-fnested-functions ./configure 91 GCCARGS=-fnested-functions ./configure
92 \end{verbatim} 92 \end{verbatim}
93 93
94 Some Mac OS X users have reported needing to use this particular GCCARGS value. 94 Some Mac OS X users have reported needing to use this particular GCCARGS value.
95 95
96 Since the author is still getting a handle on the GNU Autotools that provide the build system, you may need to do some further work to get started, especially in environments with significant differences from Linux (where most testing is done). One OS X user reported needing to run \texttt{./configure} with \texttt{CFLAGS=-I/opt/local/include}, since this directory wound up holding a header file associated with a \texttt{libmhash} package installed via DarwinPorts. While that user built Ur/Web successfully with no further tweaks, another OS X user reported that he needed to install Autoconf and Automake from MacPorts and run the following before \texttt{./configure}: 96 Since the author is still getting a handle on the GNU Autotools that provide the build system, you may need to do some further work to get started, especially in environments with significant differences from Linux (where most testing is done). One OS X user reported needing to run \texttt{./configure} with \texttt{CFLAGS=-I/opt/local/include}, since this directory wound up holding a header file associated with a \texttt{libmhash} package installed via DarwinPorts.
97
98 \begin{verbatim}
99 aclocal
100 autoconf
101 \end{verbatim}
102
103 He also reported needing to add \texttt{/opt/local/bin/} to his \texttt{\$PATH}, because of an unusual set-up where Autotools files were installed in that directory.
104 97
105 The Emacs mode can be set to autoload by adding the following to your \texttt{.emacs} file. 98 The Emacs mode can be set to autoload by adding the following to your \texttt{.emacs} file.
106 99
107 \begin{verbatim} 100 \begin{verbatim}
108 (add-to-list 'load-path "/usr/local/share/emacs/site-lisp/urweb-mode") 101 (add-to-list 'load-path "/usr/local/share/emacs/site-lisp/urweb-mode")