]> git.sesse.net Git - vlc/commitdiff
* modules/gui/wince/interface.cpp: include extra version information in the about...
authorGildas Bazin <gbazin@videolan.org>
Sat, 26 Nov 2005 17:22:19 +0000 (17:22 +0000)
committerGildas Bazin <gbazin@videolan.org>
Sat, 26 Nov 2005 17:22:19 +0000 (17:22 +0000)
modules/gui/wince/interface.cpp

index 9ac44e8d7868dab806015e6f2f78793015ad3846..2ab8e4cd1b174255091c01de5f1b497f85ce92d3 100644 (file)
@@ -495,8 +495,12 @@ LRESULT Interface::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp )
             string about = (string)"VLC media player " PACKAGE_VERSION +
                 _("\n(WinCE interface)\n\n") +
                 _("(c) 1996-2005 - the VideoLAN Team\n\n") +
+                _("Compiled by ") + VLC_CompileBy() + "@" +
+                VLC_CompileHost() + "." + VLC_CompileDomain() + ".\n" +
+                _("Compiler: ") + VLC_Compiler() + ".\n" +
+                _("Based on SVN revision: ") + VLC_Changeset() + ".\n\n" +
                 _("The VideoLAN team <videolan@videolan.org>\n"
-                  "http://www.videolan.org/\n\n");
+                  "http://www.videolan.org/");
 
             MessageBox( hwnd, _FROMMB(about.c_str()),
                         _T("About VLC media player"), MB_OK );