summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG11
-rw-r--r--doc/manual.tex11
2 files changed, 21 insertions, 1 deletions
diff --git a/CHANGELOG b/CHANGELOG
index ac96d69a..fa9a26e5 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,4 +1,15 @@
========
+20100130
+========
+
+- Conversion to an Automake-based build system, for greater portability in
+ building shared libraries
+- -path and -root command-line flags
+- Exported page handling functions (i.e., those page-generating functions
+ appearing in the main module's signature) may now take any number of
+ arguments, including 0.
+
+========
20100112
========
diff --git a/doc/manual.tex b/doc/manual.tex
index e2ce39be..8d888295 100644
--- a/doc/manual.tex
+++ b/doc/manual.tex
@@ -91,7 +91,16 @@ Even with the right packages installed, configuration and building might fail to
GCCARGS=-fnested-functions ./configure
\end{verbatim}
-Some OSX users have reported needing to use this particular GCCARGS value.
+Some Mac OS X users have reported needing to use this particular GCCARGS value.
+
+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}:
+
+\begin{verbatim}
+aclocal
+autoconf
+\end{verbatim}
+
+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.
The Emacs mode can be set to autoload by adding the following to your \texttt{.emacs} file.