mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 08:35:26 +00:00
8b47db064c
author=ashuk r=edburns Files modified mozilla/java/build/install_webclient_unix.js mozilla/java/build/install_webclient_win32.js mozilla/java/build/Makefile.in mozilla/java/build/Makefile.win mozilla/java/Makefile.win mozilla/java/webclient/src_moz/Makefile.in mozilla/java/webclient/src_moz/Makefile.win Files added mozilla/java/build/README.BLACKCONNECT mozilla/java/build/README.BLACKWOOD mozilla/java/build/README.DOM mozilla/java/build/README.PLUGLET mozilla/java/build/README.WEBCLIENT this fix allows XPIs to be generated for all the Blackwood components individually or together on Win32, Solaris and linux.
79 lines
1.7 KiB
Plaintext
79 lines
1.7 KiB
Plaintext
Black Connect
|
|
================================
|
|
|
|
This directory contains the Black Connect
|
|
|
|
The sources is divided into three directories
|
|
|
|
connect
|
|
public headers.
|
|
ORB implementation.
|
|
|
|
xpcom
|
|
XPCOM stubs and proxy implementation
|
|
|
|
java
|
|
JAVA stubs and proxy implementation
|
|
Java component loader
|
|
|
|
===============================================
|
|
Solaris directions
|
|
===============================================
|
|
|
|
Requirements:
|
|
|
|
* current mozilla built tree
|
|
|
|
* JDK1.3
|
|
|
|
* Perl 5 must be in your path
|
|
|
|
How To Build:
|
|
|
|
* make sure the environment var JDKHOME is set to your jdk installation
|
|
directory, ie export JDKHOME=/usr/local/jdk1.3
|
|
|
|
* Add following directories to to your LD_LIBRARY_PATH:
|
|
|
|
|
|
$MOZILLA_FIVE_HOME:$JDKHOME/jre/lib/$HOSTTYPE/native_threads:$JDKHOME/jre/lib/$HOSTTYPE/classic:
|
|
$JDKHOME/jre/lib/$HOSTTYPE/:
|
|
|
|
* type "gmake"
|
|
|
|
|
|
==============================================
|
|
Linux directions
|
|
===============================================
|
|
|
|
Requirements:
|
|
|
|
* mozilla m16 build tree
|
|
|
|
* JDK1.3 from IBM
|
|
|
|
* Perl 5 must be in your path
|
|
|
|
How To Build:
|
|
|
|
* make sure the environment var JDKHOME is set to your jdk installation
|
|
directory, ie export JDKHOME=/usr/local/jdk1.3
|
|
|
|
* Add following directories to to your LD_LIBRARY_PATH:
|
|
|
|
$MOZILLA_FIVE_HOME:$JDKHOME/jre/bin:$JDKHOME/jre/bin/classic:
|
|
|
|
* remove jni* jri* from MOZILLA_FIVE_HOME/dist/include
|
|
|
|
* type "gmake"
|
|
|
|
==============================================
|
|
How to run test java component
|
|
===============================================
|
|
* cd java/test
|
|
* gmake
|
|
* add $MOZILLA_FIVE_HOME/dist/classes to your CLASSPATH
|
|
Test component would be placed in dist/bin/componets and loaded on mozilla
|
|
sturtup (or you can use regxpcom for testing)
|
|
|