~ubuntu-branches/debian/experimental/vlc/experimental

« back to all changes in this revision

Viewing changes to bin/override.c

  • Committer: Bazaar Package Importer
  • Author(s): Benjamin Drung, Christophe Mutricy, Benjamin Drung
  • Date: 2010-08-19 22:27:45 UTC
  • mfrom: (20.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20100819222745-u7f679ldhi323o7v
Tags: 1.1.3-2
[ Christophe Mutricy ]
* Depends on xulrunner-dev >= 1.9.2
* Activate VA-API (Closes: #587792, LP: #539406)

[ Benjamin Drung ]
* Switch to dh7.
* Move libavcodec plugin from vlc-nox to vlc.
* Add Xb-Npp header to mozilla-plugin-vlc package. (Not doing anything
  on Debian at the moment, see #484010)
* Add apport hook to include more VLC dependencies in bug reports and
  install it on Ubuntu.

Show diffs side-by-side

added added

removed removed

Lines of Context:
292
292
}
293
293
#endif
294
294
 
295
 
/*** Buggy shared objects ***/
296
 
#include <string.h>
297
 
 
298
 
void *dlopen (const char *path, int flag)
299
 
{
300
 
    if (path && strstr (path, "/gui_platform/libkde.so"))
301
 
        return NULL; /* Oh no, not that one! */
302
 
    return CALL(dlopen, path, flag);
303
 
}
304
 
 
305
295
#else
306
296
void vlc_enable_override (void)
307
297
{