[cairo-commit] cairomm ChangeLog,1.25,1.26 configure.in,1.8,1.9
Jonathon Jongsma
commit at pdx.freedesktop.org
Fri Feb 17 07:14:11 PST 2006
Committed by: jjongsma
Update of /cvs/cairo/cairomm
In directory gabe:/tmp/cvs-serv3144
Modified Files:
ChangeLog configure.in
Log Message:
2006-02-17 Danilo Piazzalunga <danilopiazza at gmail.com>
* configure.in: Bug #5929: Output files in docs subdir only if
--enable-docs is set. This prevents configure from generating files which
are not cleaned up when --disable-docs is used.
Use AC_CONFIG_FILES and AC_OUTPUT as recommended.
Index: ChangeLog
===================================================================
RCS file: /cvs/cairo/cairomm/ChangeLog,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -d -r1.25 -r1.26
--- ChangeLog 17 Feb 2006 15:06:35 -0000 1.25
+++ ChangeLog 17 Feb 2006 15:14:09 -0000 1.26
@@ -1,3 +1,10 @@
+2006-02-17 Danilo Piazzalunga <danilopiazza at gmail.com>
+
+ * configure.in: Bug #5929: Output files in docs subdir only if
+ --enable-docs is set. This prevents configure from generating files which
+ are not cleaned up when --disable-docs is used.
+ Use AC_CONFIG_FILES and AC_OUTPUT as recommended.
+
2006-02-16 Jonathon Jongsma <jonathon.jongsma at gmail.com>
* docs/reference/Doxyfile.in:
Index: configure.in
===================================================================
RCS file: /cvs/cairo/cairomm/configure.in,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- configure.in 8 Feb 2006 00:55:17 -0000 1.8
+++ configure.in 17 Feb 2006 15:14:09 -0000 1.9
@@ -100,20 +100,21 @@
[enable_docs=yes])
if test "x$enable_docs" = "xyes"; then
DOCS_SUBDIR="docs"
+ AC_CONFIG_FILES(
+ docs/Makefile
+ docs/reference/Makefile
+ docs/reference/Doxyfile
+ )
else
DOCS_SUBDIR=""
fi
AC_SUBST(DOCS_SUBDIR)
-AC_OUTPUT(
+AC_CONFIG_FILES(
Makefile
cairomm/Makefile
- docs/Makefile
- docs/reference/Makefile
- docs/reference/Doxyfile
-
examples/Makefile
examples/png_file/Makefile
examples/pdf-surface/Makefile
@@ -122,3 +123,5 @@
cairomm-1.0.pc
)
+
+AC_OUTPUT()
More information about the cairo-commit
mailing list