Search
j0ke.net Open Build Service
>
Projects
>
multimedia
:
SL11
>
vlc
> vlc-buildcompare.patch
Sign Up
|
Log In
Username
Password
Cancel
Overview
Repositories
Revisions
Requests
Users
Advanced
Attributes
Meta
File vlc-buildcompare.patch of Package vlc
--- configure.orig 2011-04-12 01:54:08.000000000 +0200 +++ configure 2011-05-22 21:56:09.000000000 +0200 @@ -48989,12 +48989,12 @@ cat >>confdefs.h <<_ACEOF -#define VLC_COMPILE_BY "`whoami`" +#define VLC_COMPILE_BY "PackMan" _ACEOF cat >>confdefs.h <<_ACEOF -#define VLC_COMPILE_HOST "`hostname -f 2>/dev/null || hostname`" +#define VLC_COMPILE_HOST "PMOBS" _ACEOF --- src/libvlc.c.orig 2011-01-27 16:50:31.000000000 +0100 +++ src/libvlc.c 2011-05-22 21:56:17.000000000 +0200 @@ -1922,9 +1922,7 @@ utf8_fprintf( stdout, _("VLC version %s (%s)\n"), VLC_Version(), psz_vlc_changeset ); - utf8_fprintf( stdout, _("Compiled by %s on %s (%s)\n"), - VLC_CompileBy(), VLC_CompileHost(), __DATE__" "__TIME__ ); - utf8_fprintf( stdout, _("Compiler: %s\n"), VLC_Compiler() ); + utf8_fprintf( stdout, "Compiled by the Packman team -- http://packman.links2linux.org\n" ); utf8_fprintf( stdout, "%s", LICENSE_MSG ); #ifdef WIN32 /* Pause the console because it's destroyed when we exit */ --- configure.ac.orig 2011-04-11 17:00:32.000000000 +0200 +++ configure.ac 2011-05-22 21:56:09.000000000 +0200 @@ -4744,8 +4744,8 @@ AC_SUBST(VERSION_REVISION) AC_SUBST(VERSION_EXTRA) AC_SUBST(COPYRIGHT_YEARS) -AC_DEFINE_UNQUOTED(VLC_COMPILE_BY, "`whoami`", [user who ran configure]) -AC_DEFINE_UNQUOTED(VLC_COMPILE_HOST, "`hostname -f 2>/dev/null || hostname`", [host which ran configure]) +AC_DEFINE_UNQUOTED(VLC_COMPILE_BY, "PackMan", [user who ran configure]) +AC_DEFINE_UNQUOTED(VLC_COMPILE_HOST, "PMOBS", [host which ran configure]) AC_DEFINE_UNQUOTED(VLC_COMPILER, "`$CC -v 2>&1 | tail -n 1`", [compiler]) dnl Win32 need s a numerical version_extra. case $( echo ${VERSION_EXTRA}|wc -m ) in --- modules/gui/qt4/dialogs/help.cpp.orig 2010-04-13 02:22:27.000000000 +0200 +++ modules/gui/qt4/dialogs/help.cpp 2011-05-22 21:56:17.000000000 +0200 @@ -117,9 +117,7 @@ "VLC uses its internal codecs and works on essentially every " "popular platform.\n\n" ) + qtr( "This version of VLC was compiled by:\n " ) - + qfu( VLC_CompileBy() )+ " on " + qfu( VLC_CompileHost() ) + - + " ("__DATE__" "__TIME__").\n" - + qtr( "Compiler: " ) + qfu( VLC_Compiler() ) + ".\n" + + "the Packman team -- http://packman.links2linux.org\n" + qtr( "You are using the Qt4 Interface.\n\n" ) + qtr( "Copyright (C) " ) + COPYRIGHT_YEARS + qtr( " by the VideoLAN Team.\n" )