* mln/version.hh.in: Add guards.
(OLN_PACKAGE_BUGREPORT, OLN_PACKAGE_NAME)
(OLN_PACKAGE_STRING, OLN_PACKAGE_VERSION):
Rename as...
(MLN_PACKAGE_BUGREPORT, MLN_PACKAGE_NAME)
(MLN_PACKAGE_STRING, MLN_PACKAGE_VERSION):
...this.
---
milena/ChangeLog | 12 ++++++++++++
milena/mln/version.hh.in | 21 +++++++++++++--------
2 files changed, 25 insertions(+), 8 deletions(-)
diff --git a/milena/ChangeLog b/milena/ChangeLog
index 36a9c7e..f1da513 100644
--- a/milena/ChangeLog
+++ b/milena/ChangeLog
@@ -1,5 +1,17 @@
2009-02-03 Roland Levillain <roland(a)lrde.epita.fr>
+ Catch up with names in configure.ac.
+
+ * mln/version.hh.in: Add guards.
+ (OLN_PACKAGE_BUGREPORT, OLN_PACKAGE_NAME)
+ (OLN_PACKAGE_STRING, OLN_PACKAGE_VERSION):
+ Rename as...
+ (MLN_PACKAGE_BUGREPORT, MLN_PACKAGE_NAME)
+ (MLN_PACKAGE_STRING, MLN_PACKAGE_VERSION):
+ ...this.
+
+2009-02-03 Roland Levillain <roland(a)lrde.epita.fr>
+
Remove dead code in mln::internal::site_relative_iterator_base.
* mln/core/internal/site_relative_iterator_base.hh
diff --git a/milena/mln/version.hh.in b/milena/mln/version.hh.in
index 1b0cf19..a550154 100644
--- a/milena/mln/version.hh.in
+++ b/milena/mln/version.hh.in
@@ -1,11 +1,16 @@
-/** The address where bug reports should be sent. */
-#undef MLN_PACKAGE_BUGREPORT
+#ifndef MLN_VERSION_HH
+# define MLN_VERSION_HH
-/** The full name of this package. */
-#undef MLN_PACKAGE_NAME
+/// The address where bug reports should be sent.
+#undef OLN_PACKAGE_BUGREPORT
-/** The full name and version of this package. */
-#undef MLN_PACKAGE_STRING
+/// The full name of this package.
+#undef OLN_PACKAGE_NAME
-/** The version of this package. */
-#undef MLN_PACKAGE_VERSION
+// The full name and version of this package.
+#undef OLN_PACKAGE_STRING
+
+/// The version of this package.
+#undef OLN_PACKAGE_VERSION
+
+#endif // ! MLN_VERSION_HH
--
1.6.1.2