]> git.sesse.net Git - vlc/commitdiff
Put only the copyright statement in COPYRIGHT_MESSAGE
authorRémi Denis-Courmont <remi@remlab.net>
Sat, 13 Mar 2010 17:31:04 +0000 (19:31 +0200)
committerRémi Denis-Courmont <remi@remlab.net>
Sat, 13 Mar 2010 17:31:04 +0000 (19:31 +0200)
configure.ac
include/vlc_interface.h
src/libvlc.c

index a5660dd1f1427658ff4f5477fabbdfb5bb31a899..b00eed7086957e1cc083606a2cbcf4cfb47dd129 100644 (file)
@@ -4699,7 +4699,7 @@ dnl
 dnl  Stuff used by the program
 dnl
 VERSION_MESSAGE="${VERSION} ${CODENAME}"
-COPYRIGHT_MESSAGE="VLC media player - version ${VERSION_MESSAGE} - (c) ${COPYRIGHT_YEARS} the VideoLAN team"
+COPYRIGHT_MESSAGE="Copyright © ${COPYRIGHT_YEARS} the VideoLAN team"
 AC_DEFINE_UNQUOTED(VERSION_MESSAGE, "${VERSION_MESSAGE}", [Simple version string])
 AC_DEFINE_UNQUOTED(COPYRIGHT_MESSAGE, "${COPYRIGHT_MESSAGE}", [Copyright string])
 AC_DEFINE_UNQUOTED(COPYRIGHT_YEARS, "${COPYRIGHT_YEARS}", [The copyright years])
index f2f62f98fce84272b888ec2ee8226b46d19963e4..4c0c79f89bd1a78bcb443a618b475df6b0eb28d2 100644 (file)
@@ -121,6 +121,7 @@ VLC_EXPORT( void, libvlc_Quit, ( libvlc_int_t * ) );
          freopen( "CONOUT$", "w", stderr ); \
          freopen( "CONIN$", "r", stdin ); \
          } \
+         msg_Info( p_intf, "VLC media player - %s", VERSION_MESSAGE ); \
          msg_Info( p_intf, "%s", COPYRIGHT_MESSAGE ); \
          msg_Info( p_intf, _("\nWarning: if you can't access the GUI " \
                              "anymore, open a command-line window, go to the " \
index 6ed2af2ca10ebcd10b7027ff7ba5ca7f70e1f16e..4166bb276cea3f2f82f16101edd58ba5a94a4519 100644 (file)
@@ -328,6 +328,7 @@ int libvlc_InternalInit( libvlc_int_t *p_libvlc, int i_argc,
 
     priv->i_verbose = var_InheritInteger( p_libvlc, "verbose" );
     /* Announce who we are - Do it only for first instance ? */
+    msg_Dbg( p_libvlc, "VLC media player - %s", VERSION_MESSAGE );
     msg_Dbg( p_libvlc, "%s", COPYRIGHT_MESSAGE );
     msg_Dbg( p_libvlc, "libvlc was configured with %s", CONFIGURE_LINE );
     /*xgettext: Translate "C" to the language code: "fr", "en_GB", "nl", "ru"... */