New translations.
fr/java/docs/faq.sgml: MFen 1.4 fr/java/docs/howtoports.sgml: MFen 1.4 fr/java/docs/newbies.sgml: MFen 1.4 fr/java/docs/performance.sgml: MFen 1.1 fr/java/docs/tutorials.sgml: MFen 1.4 fr/java/links/api.sgml: MFen 1.5 fr/java/links/development.sgml: MFen 1.7 fr/java/links/documentation.sgml: MFen 1.4 fr/java/links/freebsd.sgml: MFen 1.5 fr/java/links/index.sgml: MFen 1.5 fr/java/links/resources.sgml: MFen 1.6 fr/java/links/servlets.sgml: MFen 1.5 fr/java/links/tools.sgml: MFen 1.4 fr/java/links/tutorials.sgml: MFen 1.4 fr/java/links/vendor.sgml: MFen 1.4 fr/kse/index.sgml: MFen 1.13
This commit is contained in:
parent
e6027f0bce
commit
8b587e9fec
Notes:
svn2git
2020-12-08 03:00:23 +00:00
svn path=/www/; revision=18694
16 changed files with 1197 additions and 0 deletions
121
fr/java/docs/faq.sgml
Normal file
121
fr/java/docs/faq.sgml
Normal file
|
|
@ -0,0 +1,121 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" [
|
||||
<!ENTITY base CDATA "../..">
|
||||
<!ENTITY date "$FreeBSD$">
|
||||
<!ENTITY title "Projet FreeBSD Java : FAQ">
|
||||
<!ENTITY % includes SYSTEM "../../includes.sgml"> %includes;
|
||||
]>
|
||||
|
||||
<!--
|
||||
The FreeBSD French Documentation Project
|
||||
Original revision: 1.4
|
||||
|
||||
Version francaise : Stephane Legrand <stephane@freebsd-fr.org>
|
||||
-->
|
||||
|
||||
<html>
|
||||
&header;
|
||||
|
||||
<table border="0">
|
||||
<tr>
|
||||
<td>
|
||||
<h2>Contenu</h2>
|
||||
<ol>
|
||||
<li> <a href="#q1">Existe-t'il un JDK 1.2 pour FreeBSD ?</a>
|
||||
<li> <a href="#q2">Puis-je utiliser le port Linux du projet Blackdown ?</a>
|
||||
</ol>
|
||||
<h2>Les réponses </h2>
|
||||
<table border="0" cellspacing="0" cellpadding="2">
|
||||
<tr>
|
||||
<TD BGCOLOR="#990000" WIDTH="10">
|
||||
<font color="#FFFFFF"><a name="q1"> 1.</a></font>
|
||||
</TD>
|
||||
<TD ALIGN="LEFT" VALIGN="TOP" BGCOLOR="#ffcc66" colspan=3>
|
||||
Existe-t'il un JDK 1.2 pour FreeBSD ?
|
||||
</TD>
|
||||
</tr>
|
||||
<tr>
|
||||
<TD BGCOLOR="#990000" WIDTH="10"> <br> </TD>
|
||||
<TD ALIGN="LEFT" VALIGN="TOP" colspan=3>
|
||||
Non. Mais le port est en cours. Consultez la section "Nouveautés".
|
||||
</TD>
|
||||
</tr>
|
||||
<tr bgcolor="#ffcc66">
|
||||
<TD BGCOLOR="#990000" WIDTH="10"><br></td>
|
||||
<td><font color="#990000"><strong>Précédent</strong></font></td>
|
||||
<td align=center><font color="#990000"><strong>Haut de page</strong></font></td>
|
||||
<td align=right><font color="#990000"><strong>Suivant</strong></font></td>
|
||||
</tr>
|
||||
<tr><td colspan=4><br></td></tr>
|
||||
<tr>
|
||||
<TD BGCOLOR="#990000" WIDTH="10">
|
||||
<FONT color="#FFFFFF"><a name="q2"> 2.</a></font></TD>
|
||||
<TD ALIGN="LEFT" VALIGN="TOP" BGCOLOR="#ffcc66" colspan=3>
|
||||
Puis-je utiliser le port Linux du projet Blackdown ?
|
||||
</TD>
|
||||
</tr>
|
||||
<tr>
|
||||
<TD BGCOLOR="#990000" WIDTH="10"> <BR> </TD>
|
||||
<TD ALIGN="LEFT" VALIGN="TOP" colspan=3>
|
||||
Plusieurs personnes ont réussi. Essayez les instructions suivantes :
|
||||
Télécharger l'archive et l'extraire dans un répertoire. Appliquer ensuite le diff suivant : <br>
|
||||
<pre>
|
||||
--- bin/.java_wrapper.dist Thu Jun 3 01:14:34 1999
|
||||
+++ bin/.java_wrapper Thu Oct 14 19:17:11 1999
|
||||
@@ -31,8 +31,8 @@
|
||||
# Resolve symlinks. See 4152645.
|
||||
while [ -h "$PRG" ]; do
|
||||
ls=`/bin/ls -ld "$PRG"`
|
||||
- link=`/usr/bin/expr "$ls" : '.*-> \(.*\)$'`
|
||||
- if /usr/bin/expr "$link" : '/' > /dev/null; then
|
||||
+ link=`/compat/linux/usr/bin/expr "$ls" : '.*-> \(.*\)$'`
|
||||
+ if /compat/linux/usr/bin/expr "$link" : '/' > /dev/null; then
|
||||
PRG="$link"
|
||||
else
|
||||
PRG="`/usr/bin/dirname $PRG`/$link"
|
||||
@@ -63,7 +63,7 @@
|
||||
# Select vm type (if classic vm, also select thread type).
|
||||
unset vmtype
|
||||
unset ttype
|
||||
-DEFAULT_THREADS_FLAG=native
|
||||
+DEFAULT_THREADS_FLAG=green
|
||||
if [ "x$1" = "x-hotspot" ]; then
|
||||
vmtype=hotspot
|
||||
ttype=native_threads
|
||||
--- jre/bin/.java_wrapper.dist Thu Jun 3 01:14:34 1999
|
||||
+++ jre/bin/.java_wrapper Thu Oct 14 19:32:06 1999
|
||||
@@ -31,8 +31,8 @@
|
||||
# Resolve symlinks. See 4152645.
|
||||
while [ -h "$PRG" ]; do
|
||||
ls=`/bin/ls -ld "$PRG"`
|
||||
- link=`/usr/bin/expr "$ls" : '.*-> \(.*\)$'`
|
||||
- if /usr/bin/expr "$link" : '/' > /dev/null; then
|
||||
+ link=`/compat/linux/usr/bin/expr "$ls" : '.*-> \(.*\)$'`
|
||||
+ if /compat/linux/usr/bin/expr "$link" : '/' > /dev/null; then
|
||||
PRG="$link"
|
||||
else
|
||||
PRG="`/usr/bin/dirname $PRG`/$link"
|
||||
@@ -63,7 +63,7 @@
|
||||
# Select vm type (if classic vm, also select thread type).
|
||||
unset vmtype
|
||||
unset ttype
|
||||
-DEFAULT_THREADS_FLAG=native
|
||||
+DEFAULT_THREADS_FLAG=green
|
||||
if [ "x$1" = "x-hotspot" ]; then
|
||||
vmtype=hotspot
|
||||
ttype=native_threads</pre><br>
|
||||
Thanks to Makoto MATSUSHITA (matusita@ics.es.osaka-u.ac.jp)
|
||||
</TD>
|
||||
</tr>
|
||||
<tr bgcolor="#ffcc66">
|
||||
<TD BGCOLOR="#990000" WIDTH="10"><br></td>
|
||||
<td><font color="#990000"><strong>Précédent</strong></font></td>
|
||||
<td align=center><font color="#990000"><strong>Haut de page</strong></font></td>
|
||||
<td align=right><font color="#990000"><strong>Suivant</strong></font></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
&footer;
|
||||
</BODY>
|
||||
</HTML>
|
||||
Loading…
Add table
Add a link
Reference in a new issue