Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 361263
Collapse All | Expand All

(-)projects/mozilla/Makefile.am (-2 / +2 lines)
Lines 19-25 Link Here
19
	support/classinfo.h
19
	support/classinfo.h
20
20
21
DIST_sources = $(SOURCES_mozilla_common) \
21
DIST_sources = $(SOURCES_mozilla_common) \
22
	support/npwin.cpp support/npmac.cpp support/npunix.c
22
	support/npwin.cpp support/npmac.cpp support/npunix.cpp
23
23
24
if BUILD_MOZILLA
24
if BUILD_MOZILLA
25
25
Lines 135-141 Link Here
135
135
136
npvlc = libvlcplugin$(LIBEXT)
136
npvlc = libvlcplugin$(LIBEXT)
137
npvlcdir = $(libdir)/mozilla/plugins
137
npvlcdir = $(libdir)/mozilla/plugins
138
SOURCES_support = support/npunix.c
138
SOURCES_support = support/npunix.cpp
139
139
140
libvlcplugin_la_SOURCES = $(SOURCES_mozilla_common) $(SOURCES_support)
140
libvlcplugin_la_SOURCES = $(SOURCES_mozilla_common) $(SOURCES_support)
141
libvlcplugin_la_CFLAGS = `$(VLC_CONFIG) --cflags mozilla` $(CPPFLAGS_mozilla_EXTRA)
141
libvlcplugin_la_CFLAGS = `$(VLC_CONFIG) --cflags mozilla` $(CPPFLAGS_mozilla_EXTRA)
(-)projects/mozilla/support/npunix.cpp (-3 / +3 lines)
Lines 635-641 Link Here
635
                       NPReason reason, void* notifyData);
635
                       NPReason reason, void* notifyData);
636
void Private_Print(NPP instance, NPPrint* platformPrint);
636
void Private_Print(NPP instance, NPPrint* platformPrint);
637
NPError Private_GetValue(NPP instance, NPPVariable variable, void *r_value);
637
NPError Private_GetValue(NPP instance, NPPVariable variable, void *r_value);
638
NPError Private_SetValue(NPP instance, NPPVariable variable, void *r_value);
638
NPError Private_SetValue(NPP instance, NPNVariable variable, void *r_value);
639
#ifdef OJI
639
#ifdef OJI
640
JRIGlobalRef Private_GetJavaClass(void);
640
JRIGlobalRef Private_GetJavaClass(void);
641
#endif
641
#endif
Lines 736-742 Link Here
736
}
736
}
737
737
738
NPError
738
NPError
739
Private_SetValue(NPP instance, NPPVariable variable, void *r_value)
739
Private_SetValue(NPP instance, NPNVariable variable, void *r_value)
740
{
740
{
741
    PLUGINDEBUGSTR("SetValue");
741
    PLUGINDEBUGSTR("SetValue");
742
    return NPP_SetValue(instance, variable, r_value);
742
    return NPP_SetValue(instance, variable, r_value);
Lines 782-788 Link Here
782
NPError
782
NPError
783
NP_GetValue(void* future, NPPVariable variable, void *value)
783
NP_GetValue(void* future, NPPVariable variable, void *value)
784
{
784
{
785
    return NPP_GetValue(future, variable, value);
785
    return NPP_GetValue((NPP)future, variable, value);
786
}
786
}
787
787
788
/*
788
/*

Return to bug 361263