]> git.sesse.net Git - vlc/commitdiff
VLC_Changeset is always available
authorRémi Denis-Courmont <rem@videolan.org>
Sun, 29 Jul 2007 09:04:33 +0000 (09:04 +0000)
committerRémi Denis-Courmont <rem@videolan.org>
Sun, 29 Jul 2007 09:04:33 +0000 (09:04 +0000)
modules/control/http/http.c
modules/gui/wince/interface.cpp
modules/gui/wxwidgets/interface.cpp

index a20ce8f809b53e1c49c0647c2d84008a2037370b..0c50226b271194d4042608556d0ed1ba7fae8999 100644 (file)
@@ -567,9 +567,7 @@ static void ParseExecute( httpd_file_sys_t *p_args, char *p_buffer,
     E_(mvar_AppendNewVar)( p_args->vars, "vlc_compile_domain",
                            VLC_CompileDomain() );
     E_(mvar_AppendNewVar)( p_args->vars, "vlc_compiler", VLC_Compiler() );
-#ifndef HAVE_SHARED_LIBVLC
     E_(mvar_AppendNewVar)( p_args->vars, "vlc_changeset", VLC_Changeset() );
-#endif
     E_(mvar_AppendNewVar)( p_args->vars, "stream_position", position );
     E_(mvar_AppendNewVar)( p_args->vars, "stream_time", time );
     E_(mvar_AppendNewVar)( p_args->vars, "stream_length", length );
index 56b1ac244acb48ce1bcb30c47c2810dcc027e46d..d141249d6ad689c8bacbee6f627a00d870ecc37b 100644 (file)
@@ -498,9 +498,7 @@ LRESULT Interface::WndProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp )
                 _("Compiled by ") + VLC_CompileBy() + "@" +
                 VLC_CompileHost() + "." + VLC_CompileDomain() + ".\n" +
                 _("Compiler: ") + VLC_Compiler() + ".\n" +
-#ifndef HAVE_SHARED_LIBVLC
                 _("Based on SVN revision: ") + VLC_Changeset() + ".\n\n" +
-#endif
                 _("The VideoLAN team <videolan@videolan.org>\n"
                   "http://www.videolan.org/");
 
index 7feefd61e74d49ac7cb4367466c08fbc240a150c..de38c173f66081d3f6bf264fe5e07e4dc56b1694 100644 (file)
@@ -952,9 +952,7 @@ void Interface::OnAbout( wxCommandEvent& WXUNUSED(event) )
        wxU(_("Compiled by "))+ wxU(VLC_CompileBy())+ wxU("@") +
        wxU(VLC_CompileHost())+ wxT(".")+ wxU(VLC_CompileDomain())+ wxT(".\n") +
        wxU(_("Compiler: "))+ wxU(VLC_Compiler())+wxT( ".\n") +
-#ifndef HAVE_SHARED_LIBVLC
        wxU(_("Based on SVN revision: "))+wxU(VLC_Changeset())+wxT(".\n\n") +
-#endif
 #ifdef __WXMSW__
         wxU( vlc_wraptext(LICENSE_MSG,WRAPCOUNT) ) + wxT("\n\n") +
 #else