Commit 25b75704 authored by Jean-Paul Saman's avatar Jean-Paul Saman

Fix for building Familiar interface with libgpewidget0 library.

parent 5f9ddb01
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* familiar.c : familiar plugin for vlc * familiar.c : familiar plugin for vlc
***************************************************************************** *****************************************************************************
* Copyright (C) 2002 VideoLAN * Copyright (C) 2002 VideoLAN
* $Id: familiar.c,v 1.13 2002/12/13 01:56:29 gbazin Exp $ * $Id: familiar.c,v 1.14 2002/12/14 23:17:56 jpsaman Exp $
* *
* Authors: Jean-Paul Saman <jpsaman@wxs.nl> * Authors: Jean-Paul Saman <jpsaman@wxs.nl>
* *
...@@ -130,6 +130,10 @@ static void Close( vlc_object_t *p_this ) ...@@ -130,6 +130,10 @@ static void Close( vlc_object_t *p_this )
static void Run( intf_thread_t *p_intf ) static void Run( intf_thread_t *p_intf )
{ {
#ifdef HAVE_GPE_INIT_H #ifdef HAVE_GPE_INIT_H
char *p_args[] = { "" };
char **pp_args = p_args;
int i_args = 1;
/* Initialize GPE interface */ /* Initialize GPE interface */
if (gpe_application_init(&i_args, &pp_args) == FALSE) if (gpe_application_init(&i_args, &pp_args) == FALSE)
exit (1); exit (1);
......
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