Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-1.1
Commits
cca505bd
Commit
cca505bd
authored
May 30, 2011
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Firefox 4 compatibility
Close #4802 Ref gentoo bug #361263
parent
942d827e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
projects/mozilla/Makefile.am
projects/mozilla/Makefile.am
+3
-3
projects/mozilla/support/npunix.cpp
projects/mozilla/support/npunix.cpp
+3
-3
No files found.
projects/mozilla/Makefile.am
View file @
cca505bd
...
...
@@ -19,7 +19,7 @@ SOURCES_mozilla_common = \
support/classinfo.h
DIST_sources
=
$(SOURCES_mozilla_common)
\
support/npwin.cpp support/npmac.cpp support/npunix.c
support/npwin.cpp support/npmac.cpp support/npunix.c
pp
if
BUILD_MOZILLA
...
...
@@ -30,7 +30,7 @@ if HAVE_WIN32
# Under Win32, Mozilla plugins need to be named NP******.DLL, but under Unix
# the common naming scheme is lib******plugin.so. Also, we need npwin.cpp
# under Win32 and npunix.c under Unix.
# under Win32 and npunix.c
pp
under Unix.
#
lib_LTLIBRARIES
=
npvlc.la
...
...
@@ -135,7 +135,7 @@ npvlc_LTLIBRARIES = libvlcplugin.la
npvlc
=
libvlcplugin
$(LIBEXT)
npvlcdir
=
$(libdir)
/mozilla/plugins
SOURCES_support
=
support/npunix.c
SOURCES_support
=
support/npunix.c
pp
libvlcplugin_la_SOURCES
=
$(SOURCES_mozilla_common)
$(SOURCES_support)
libvlcplugin_la_CFLAGS
=
`
$(VLC_CONFIG)
--cflags
mozilla
`
$(CPPFLAGS_mozilla_EXTRA)
...
...
projects/mozilla/support/npunix.c
→
projects/mozilla/support/npunix.c
pp
View file @
cca505bd
...
...
@@ -635,7 +635,7 @@ void Private_URLNotify(NPP instance, const char* url,
NPReason
reason
,
void
*
notifyData
);
void
Private_Print
(
NPP
instance
,
NPPrint
*
platformPrint
);
NPError
Private_GetValue
(
NPP
instance
,
NPPVariable
variable
,
void
*
r_value
);
NPError
Private_SetValue
(
NPP
instance
,
NP
P
Variable
variable
,
void
*
r_value
);
NPError
Private_SetValue
(
NPP
instance
,
NP
N
Variable
variable
,
void
*
r_value
);
#ifdef OJI
JRIGlobalRef
Private_GetJavaClass
(
void
);
#endif
...
...
@@ -736,7 +736,7 @@ Private_GetValue(NPP instance, NPPVariable variable, void *r_value)
}
NPError
Private_SetValue
(
NPP
instance
,
NP
P
Variable
variable
,
void
*
r_value
)
Private_SetValue
(
NPP
instance
,
NP
N
Variable
variable
,
void
*
r_value
)
{
PLUGINDEBUGSTR
(
"SetValue"
);
return
NPP_SetValue
(
instance
,
variable
,
r_value
);
...
...
@@ -782,7 +782,7 @@ NP_GetMIMEDescription(void)
NPError
NP_GetValue
(
void
*
future
,
NPPVariable
variable
,
void
*
value
)
{
return
NPP_GetValue
(
future
,
variable
,
value
);
return
NPP_GetValue
(
(
NPP
)
future
,
variable
,
value
);
}
/*
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment