X-Git-Url: http://git.cinelerra-gg.org/git/?p=goodguy%2Fhistory.git;a=blobdiff_plain;f=cinelerra-5.1%2Fcinelerra%2Faboutprefs.C;h=5f286aef8b7be528b0b2e2eb45be9728b10a5941;hp=8ad411ddee0357b89fd8c19f5583b45ea2d537ae;hb=502b6f3b6fd04f6b01c6d70dcb81aa304dd0db1c;hpb=78555663c7d2d1148808014cc7ada53255c0c305 diff --git a/cinelerra-5.1/cinelerra/aboutprefs.C b/cinelerra-5.1/cinelerra/aboutprefs.C index 8ad411dd..5f286aef 100644 --- a/cinelerra-5.1/cinelerra/aboutprefs.C +++ b/cinelerra-5.1/cinelerra/aboutprefs.C @@ -23,13 +23,15 @@ #include "bcsignals.h" #include "file.h" #include "language.h" -#include "libzmpeg3.h" #include "mwindow.h" #include "theme.h" #include "vframe.h" #include "versioninfo.h" - +#ifndef COMPILEDATE +#define COMPILEDATE "built: " __DATE__ " " __TIME__ +#endif +const char *AboutPrefs::build_timestamp = COMPILEDATE; AboutPrefs::AboutPrefs(MWindow *mwindow, PreferencesWindow *pwindow) : PreferencesDialog(mwindow, pwindow) @@ -114,19 +116,16 @@ void AboutPrefs::create_objects() "This program is free software; you can redistribute it and/or modify it under the terms\n" "of the GNU General Public License as published by the Free Software Foundation; either version\n" "2 of the License, or (at your option) any later version.\n" -"\n" +" This software uses libraries from the FFmpeg project under the LGPLv2.1.\n" "This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;\n" "without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR\n" "PURPOSE. See the GNU General Public License for more details.\n")); draw_text(x, y, license3); y += get_text_height(MEDIUMFONT, license3); -#ifndef COMPILEDATE -#define COMPILEDATE "built: " __DATE__ " " __TIME__ -#endif - draw_text(x, y, COMPILEDATE); + draw_text(x, y, build_timestamp); #if defined(REPOMAINTXT) - y += get_text_height(MEDIUMFONT, COMPILEDATE); + y += get_text_height(MEDIUMFONT, build_timestamp); draw_text(x, y, REPOMAINTXT); #endif