--- /dev/null
+Description: allow setting of the displayed build-date
+ so we can make builds reproducible
+Author: IOhannes m zmölnig
+---
+This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
+--- giada.orig/src/gui/dialogs/gd_about.cpp
++++ giada/src/gui/dialogs/gd_about.cpp
+@@ -39,6 +39,10 @@
+
+ extern Conf G_Conf;
+
++#ifndef BUILD_DATE
++# define BUILD_DATE __DATE__
++#endif
++
+
+ gdAbout::gdAbout()
+ #ifdef WITH_VST
+@@ -67,7 +71,7 @@
+ char message[512];
+ sprintf(
+ message,
+- "Version " VERSIONE " (" __DATE__ ")\n\n"
++ "Version " VERSIONE " (" BUILD_DATE ")\n\n"
+ "Developed by Monocasual\n"
+ "Based on FLTK (%d.%d.%d), RtAudio (%s),\n"
+ "RtMidi (%s), libsamplerate and libsndfile\n\n"