Changeset 892
- Timestamp:
- Nov 26, 2009, 6:56:47 AM (14 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bin/Parameter.cc
r847 r892 44 44 #include <string> 45 45 #include <sys/stat.h> 46 47 // FIXME: remove this when we require autoconf 2.6448 // autoconf 2.64 defines PACKAGE_URL in config.h (from AC_INIT)49 #ifndef PACKAGE_URL50 #define PACKAGE_URL "http://dev.thep.lu.se/svndigest"51 #endif52 46 53 47 namespace theplu { -
trunk/configure.ac
r891 r892 39 39 AC_CONFIG_MACRO_DIR([m4]) 40 40 AC_PREFIX_DEFAULT([/usr/local]) 41 42 dnl FIXME remove when we assume autoconf 2.64 43 m4_ifndef([AC_PACKAGE_URL], 44 [AC_DEFINE([PACKAGE_URL], ["http://dev.thep.lu.se/svndigest"], 45 [Define to home page for this package])]) 41 46 42 47 AC_SUBST([SVNDIGEST_MAJOR_VERSION], [MAJOR_VERSION]) -
trunk/lib/html_utility.cc
r847 r892 67 67 os << "<p class=\"footer\">\nGenerated on "; 68 68 hs << date("%a %b %e %H:%M:%S %Y") << " (UTC) by "; 69 os << anchor("http://dev.thep.lu.se/svndigest/", 70 PACKAGE_STRING, 0, ""); 69 os << anchor(PACKAGE_URL, PACKAGE_STRING, 0, ""); 71 70 if (DEV_BUILD) 72 71 os << " (dev build " << svn_revision() << ")";
Note: See TracChangeset
for help on using the changeset viewer.