forked from pool/libvmime
ca87dda8f3
Automatic submission by obs-autosubmit OBS-URL: https://build.opensuse.org/request/show/162613 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libvmime?expand=0&rev=8
26 lines
756 B
Diff
26 lines
756 B
Diff
From 6908ad636e59339b9042205e6fd22444f45a7529 Mon Sep 17 00:00:00 2001
|
|
From: Jan Engelhardt <jengelh@inai.de>
|
|
Date: Wed, 27 Mar 2013 17:52:26 +0100
|
|
Subject: [PATCH] src: avoid __DATE__ and __TIME__
|
|
|
|
---
|
|
src/base.cpp | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/src/base.cpp b/src/base.cpp
|
|
index d5f3e78..74bbba7 100644
|
|
--- a/src/base.cpp
|
|
+++ b/src/base.cpp
|
|
@@ -75,7 +75,7 @@ const string libname() { return (VMIME_PACKAGE); }
|
|
*
|
|
* @return library version
|
|
*/
|
|
-const string libversion() { return (VMIME_VERSION " (" __DATE__ " " __TIME__ ")"); }
|
|
+const string libversion() { return (VMIME_VERSION " (_""_DATE_""_ causes unnecessary rebuilds - avoid)"); }
|
|
|
|
/** Return the library API version (eg: "6:1:6").
|
|
*
|
|
--
|
|
1.8.1.4
|
|
|