Commit 3a76f14d authored by Sam Hocevar's avatar Sam Hocevar

* ./modules/visualization/xosd/xosd.c: Woody compilation fixed.

  * ./debian/woody-buildpackage: sed syntax fixed.
parent d252bd23
#! /bin/sh #! /bin/sh
# $Id: woody-buildpackage,v 1.2 2003/02/02 18:57:01 sam Exp $ # $Id: woody-buildpackage,v 1.3 2003/02/03 01:32:37 sam Exp $
# Build VLC for a Woody Debian system # Build VLC for a Woody Debian system
if test ! -d debian if test ! -d debian
...@@ -25,8 +25,8 @@ sed -e 's/liba52-[^-]*-dev/a52dec-dev (>=0.7.3)/' \ ...@@ -25,8 +25,8 @@ sed -e 's/liba52-[^-]*-dev/a52dec-dev (>=0.7.3)/' \
# remove wxwindows stuff, change changelog path # remove wxwindows stuff, change changelog path
sed -e '/# Package: wxvlc/,/^ *$/d' \ sed -e '/# Package: wxvlc/,/^ *$/d' \
-e '/--enable-wxwindows/d' \ -e '/--enable-wxwindows/d' \
-e ', debian/changelog , debian/changelog.woody ,' \ -e 's, debian/changelog , debian/changelog.woody ,' \
-e '/dh_gencontrol[^#]*/& -- -ldebian/changelog.woody/' \ -e 's,dh_gencontrol[^#]*,& -- -ldebian/changelog.woody,' \
< debian/rules > debian/rules.woody < debian/rules > debian/rules.woody
chmod a+x debian/rules.woody chmod a+x debian/rules.woody
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* xosd.c : X On Screen Display interface * xosd.c : X On Screen Display interface
***************************************************************************** *****************************************************************************
* Copyright (C) 2001 VideoLAN * Copyright (C) 2001 VideoLAN
* $Id: xosd.c,v 1.6 2003/01/28 16:52:36 sam Exp $ * $Id: xosd.c,v 1.7 2003/02/03 01:32:37 sam Exp $
* *
* Authors: Loc Minier <lool@videolan.org> * Authors: Loc Minier <lool@videolan.org>
* *
...@@ -108,7 +108,7 @@ static int Open( vlc_object_t *p_this ) ...@@ -108,7 +108,7 @@ static int Open( vlc_object_t *p_this )
/* Initialize library */ /* Initialize library */
p_intf->p_sys->p_osd = p_intf->p_sys->p_osd =
#ifdef HAVE_XOSD_VERSION_0 #if defined(HAVE_XOSD_VERSION_0) || defined(HAVE_XOSD_VERSION_1)
xosd_init( config_GetPsz( p_intf, "xosd-font" ), xosd_init( config_GetPsz( p_intf, "xosd-font" ),
"LawnGreen", 3, XOSD_top, 0, 1 ); "LawnGreen", 3, XOSD_top, 0, 1 );
#else #else
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment