File exiv2-build-date.patch of Package exiv2
--- exiv2-0.24.orig/config/Doxyfile
+++ exiv2-0.24/config/Doxyfile
@@ -974,7 +974,7 @@ HTML_COLORSTYLE_GAMMA = 80
# page will contain the date and time when the page was generated. Setting
# this to NO can help when comparing the output of multiple runs.
-HTML_TIMESTAMP = YES
+HTML_TIMESTAMP = NO
# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML
# documentation will contain sections that can be hidden and shown after the
--- exiv2-0.24.orig/src/version.cpp
+++ exiv2-0.24/src/version.cpp
@@ -257,8 +257,6 @@ EXIV2API void dumpLibraryInfo(std::ostre
os << "dll=" << dll << endl;
os << "debug=" << debug << endl;
os << "version=" << __VERSION__ << endl;
- os << "date=" << __DATE__ << endl;
- os << "time=" << __TIME__ << endl;
if ( libs.begin() != libs.end() ) {
os << "executable=" << *libs.begin() << endl;
--- exiv2-0.24.orig/samples/geotag.cpp
+++ exiv2-0.24/samples/geotag.cpp
@@ -684,7 +684,7 @@ int getFileType(const char* path,Options
int version(const char* program)
{
- printf("%s: %s %s\n",program,__DATE__,__TIME__);
+ printf("%s\n",program);
return 0;
}