[vlc-commits] commit: Put only the copyright statement in COPYRIGHT_MESSAGE ( Rémi Denis-Courmont )

git at videolan.org git at videolan.org
Sat Mar 13 18:32:37 CET 2010


vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Sat Mar 13 19:31:04 2010 +0200| [0db7b28884831a860b0928e118586c2e4f7b790d] | committer: Rémi Denis-Courmont 

Put only the copyright statement in COPYRIGHT_MESSAGE

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=0db7b28884831a860b0928e118586c2e4f7b790d
---

 configure.ac            |    2 +-
 include/vlc_interface.h |    1 +
 src/libvlc.c            |    1 +
 3 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/configure.ac b/configure.ac
index a5660dd..b00eed7 100644
--- a/configure.ac
+++ b/configure.ac
@@ -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])
diff --git a/include/vlc_interface.h b/include/vlc_interface.h
index f2f62f9..4c0c79f 100644
--- a/include/vlc_interface.h
+++ b/include/vlc_interface.h
@@ -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 " \
diff --git a/src/libvlc.c b/src/libvlc.c
index 6ed2af2..4166bb2 100644
--- a/src/libvlc.c
+++ b/src/libvlc.c
@@ -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"... */



More information about the vlc-commits mailing list