Changeset 22089b32e9c539e44552ce5006a53720b927f9af

Show
Ignore:
Timestamp:
07/06/06 17:20:08 (2 years ago)
Author:
Filippo Carone <littlejohn@videolan.org>
git-committer:
Filippo Carone <littlejohn@videolan.org> 1149693608 +0000
git-parent:

[973a35aabd50a7ab95caf6b8af067adea1fe04a3]

git-author:
Filippo Carone <littlejohn@videolan.org> 1149693608 +0000
Message:

Suggest to check/set JAVA_HOME if compilation fails

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • bindings/java/FAQ

    rb2de137 r22089b3  
    3535needs porting to MS/Windows and MacOS, if you are able to implement the JNI for 
    3636these platforms you may contribute the code. 
     37 
     38== 6. I have a compile error, what's the problem? == 
     39 
     40Did you set the JAVA_HOME environment variable? If not, do: 
     41 
     42export JAVA_HOME=/path/to/jvm 
     43 
     44For example I added to my .bashrc: 
     45 
     46export JAVA_HOME=/usr/lib/j2sdk1.5-sun 
     47 
     48 
  • bindings/java/README

    rb2de137 r22089b3  
    1212svn co svn://svn.videolan.org/vlc/trunk vlc-trunk 
    1313 
    14  bootstrap, clean and configure
     14 bootstrap, clean, set environment variables, configure and build
    1515 
    1616./bootstrap && make distclean 
     17 
     18export JAVA_HOME=/path/to/jvm  
     19(for example i have JAVA_HOME=/usr/lib/j2sdk1.5-sun) 
     20 
    1721./configure --enable-java-bindings && make && make install 
    1822