Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
e5db0823
Commit
e5db0823
authored
Oct 11, 2006
by
Filippo Carone
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
make the java bindings compile again (use --disable-libtool in configure)
parent
9a78b063
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
6 deletions
+7
-6
bindings/java/Makefile.am
bindings/java/Makefile.am
+5
-4
bindings/java/src/Makefile.am
bindings/java/src/Makefile.am
+1
-1
bindings/java/src/core-jni.cc
bindings/java/src/core-jni.cc
+1
-1
No files found.
bindings/java/Makefile.am
View file @
e5db0823
...
...
@@ -2,7 +2,7 @@
# VLC Java Bindings
#######################################################################
SUBDIRS
=
src
#
SUBDIRS= src
DIST_SUBDIRS
=
$(SUBDIRS)
EXTRA_DIST
=
\
...
...
@@ -77,11 +77,12 @@ VlcClient: $(OBJECTS)
VLCExample
:
$(OBJECTS)
$(JAVAC)
VLCExample.java
.class
:
class
:
%.java
$(JAVAC)
$?
$(JCH)
org/videolan/jvlc/
$
$(
basename
$*
)
-o
includes/
$
$(
basename
$*
)
.h
$(JCH)
$
(
@D
)
/
$
(
*
F
)
-o
includes/
$
(
*
F
)
.h
clean-local
:
rm
-f
*
.class
*
~ org/videolan/jvlc/
*
.class org_videolan
*
.h
*
.so
*
.o
*
.dll
rm
-f
*
.class
*
~ org/videolan/jvlc/
*
.class org_videolan
*
.h
includes/
*
.h src/
*
.o
*
.so
*
.o
*
.dll
endif
bindings/java/src/Makefile.am
View file @
e5db0823
...
...
@@ -13,7 +13,7 @@ EXTRA_DIST= \
if
BUILD_JAVA
JAVACXXFLAGS
=
`
top_builddir
=
../../.. ../../../vlc-config
--cflags
pic
`
-I
../../
-I
../../include
$(JINCLUDES)
-c
JAVACXXFLAGS
=
`
top_builddir
=
../../.. ../../../vlc-config
--cflags
pic
`
-I
.
-Isrc
-I
.
./../
-I
../../include
$(JINCLUDES)
-c
all
:
$(COBJECTS)
...
...
bindings/java/src/core-jni.cc
View file @
e5db0823
...
...
@@ -83,7 +83,7 @@ JNIEXPORT void JNICALL Java_org_videolan_jvlc_JVLC__1destroy (JNIEnv *env, jobje
instance
=
getClassInstance
(
env
,
_this
);
libvlc_destroy
(
(
libvlc_instance_t
*
)
instance
,
NULL
);
libvlc_destroy
(
(
libvlc_instance_t
*
)
instance
,
NULL
);
return
;
}
...
...
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