Commit 1619a9c8 authored by Rafaël Carré's avatar Rafaël Carré

Mozilla: fix compilation on OSX, where we don't use libX11

parent 114bddb7
...@@ -364,8 +364,10 @@ NPError NPP_Destroy( NPP instance, NPSavedData** save ) ...@@ -364,8 +364,10 @@ NPError NPP_Destroy( NPP instance, NPSavedData** save )
NPError NPP_SetWindow( NPP instance, NPWindow* window ) NPError NPP_SetWindow( NPP instance, NPWindow* window )
{ {
#ifdef XP_UNIX && !defined(__APPLE__)
Window control; Window control;
unsigned int i_control_height = 0, i_control_width = 0; unsigned int i_control_height = 0, i_control_width = 0;
#endif
if( ! instance ) if( ! instance )
{ {
...@@ -379,8 +381,9 @@ NPError NPP_SetWindow( NPP instance, NPWindow* window ) ...@@ -379,8 +381,9 @@ NPError NPP_SetWindow( NPP instance, NPWindow* window )
/* we should probably show a splash screen here */ /* we should probably show a splash screen here */
return NPERR_NO_ERROR; return NPERR_NO_ERROR;
} }
#ifdef XP_UNIX && !defined(__APPLE__)
control = p_plugin->getControlWindow(); control = p_plugin->getControlWindow();
#endif
libvlc_instance_t *p_vlc = p_plugin->getVLC(); libvlc_instance_t *p_vlc = p_plugin->getVLC();
/* /*
......
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