From 2b831182ac5b45f1d072e605f09ca85e55ff3a30 Mon Sep 17 00:00:00 2001 From: gambas Date: Sat, 20 Jun 2020 20:12:10 +0200 Subject: [PATCH] Do not use '__DATE__' macro for reproducible builds. [GB.HTTPD] * BUG: Do not use '__DATE__' macro for reproducible builds. --- gb.httpd/src/version.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gb.httpd/src/version.h b/gb.httpd/src/version.h index fe719326e..271a4c4bf 100644 --- a/gb.httpd/src/version.h +++ b/gb.httpd/src/version.h @@ -3,7 +3,7 @@ #ifndef _VERSION_H_ #define _VERSION_H_ -#define SERVER_SOFTWARE "gb.httpd " __DATE__ +#define SERVER_SOFTWARE "gb.httpd" #define SERVER_ADDRESS "http://gambas.sourceforge.net" #endif /* _VERSION_H_ */