Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
775de547
Commit
775de547
authored
May 06, 1999
by
Per Bothner
Committed by
Per Bothner
May 05, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update
From-SVN: r26798
parent
11a606eb
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
69 additions
and
0 deletions
+69
-0
libjava/ChangeLog
+21
-0
libjava/Makefile.am
+48
-0
No files found.
libjava/ChangeLog
View file @
775de547
1999-05-05 Per Bothner <bothner@cygnus.com>
* java/awt/*: Check a bunch of classes, a few complete, but mostly
stub classes. (This is enough to get Kawa to compile against libgcj.)
* gnu/gcj/RawData.java: New class.
* doc/cni.sgml: Document RawData.
* java/util/zip/InflaterInputStream.java: New stub class.
* java/util/zip/ZipInputStream.java: New class. Partly works.
* java/util/zip/ZipConstants.java: Add two (internal) constants.
* java/util/zip/ZipEntry.java (timeFromDOS): New static method.
* java/util/zip/ZipFile.java: Now mostly works (unless compressed).
* java/util/zip/ZipOutputStream.java: Start implementation.
* java/lang/natSystem.cc (DEFAULT_FILE_ENCODING): New macro.
(default_file_encoding): New global, initial value is above macro.
(init_properties): Default file.encoding to default_file_encoding.
* Makefile.am: Add new classes.
1999-05-05 Tom Tromey <tromey@cygnus.com>
1999-05-05 Tom Tromey <tromey@cygnus.com>
* Makefile.in: Rebuilt.
* Makefile.in: Rebuilt.
...
...
libjava/Makefile.am
View file @
775de547
...
@@ -360,6 +360,49 @@ gnu/gcj/convert/UnicodeToBytes.java
...
@@ -360,6 +360,49 @@ gnu/gcj/convert/UnicodeToBytes.java
## hand.
## hand.
special_java_source_files
=
java/lang/Class.java java/lang/Object.java
special_java_source_files
=
java/lang/Class.java java/lang/Object.java
awt_java_source_files
=
\
java/awt/AWTEvent.java
\
java/awt/BorderLayout.java
\
java/awt/Component.java
\
java/awt/Container.java
\
java/awt/Dimension.java
\
java/awt/Event.java
\
java/awt/Font.java
\
java/awt/Frame.java
\
java/awt/LayoutManager.java
\
java/awt/LayoutManager2.java
\
java/awt/Menu.java
\
java/awt/MenuBar.java
\
java/awt/MenuItem.java
\
java/awt/MenuComponent.java
\
java/awt/MenuContainer.java
\
java/awt/Point.java
\
java/awt/Rectangle.java
\
java/awt/Shape.java
\
java/awt/TextArea.java
\
java/awt/TextComponent.java
\
java/awt/Toolkit.java
\
java/awt/Window.java
\
java/awt/event/ActionEvent.java
\
java/awt/event/ActionListener.java
\
java/awt/event/ComponentEvent.java
\
java/awt/event/InputEvent.java
\
java/awt/event/KeyEvent.java
\
java/awt/event/KeyListener.java
\
java/awt/event/TextEvent.java
\
java/awt/event/TextListener.java
\
java/awt/event/WindowAdapter.java
\
java/awt/event/WindowEvent.java
\
java/awt/event/WindowListener.java
\
java/awt/geom/Point2D.java
\
java/awt/geom/Dimension2D.java
\
java/awt/peer/ComponentPeer.java
\
java/awt/peer/ContainerPeer.java
\
java/awt/peer/FramePeer.java
\
java/awt/peer/WindowPeer.java
# $(awt_java_source_files)
## List of all .java files to be compiled. Please keep this list
## List of all .java files to be compiled. Please keep this list
## alphabetical. Please put files from gnu/gcj/convert into
## alphabetical. Please put files from gnu/gcj/convert into
## convert_source_files. If the .java file has a hand-maintained
## convert_source_files. If the .java file has a hand-maintained
...
@@ -376,6 +419,7 @@ gnu/gcj/protocol/file/Connection.java \
...
@@ -376,6 +419,7 @@ gnu/gcj/protocol/file/Connection.java \
gnu/gcj/protocol/file/Handler.java
\
gnu/gcj/protocol/file/Handler.java
\
gnu/gcj/protocol/http/Connection.java
\
gnu/gcj/protocol/http/Connection.java
\
gnu/gcj/protocol/http/Handler.java
\
gnu/gcj/protocol/http/Handler.java
\
gnu/gcj/RawData.java
\
java/io/BufferedInputStream.java
\
java/io/BufferedInputStream.java
\
java/io/BufferedOutputStream.java
\
java/io/BufferedOutputStream.java
\
java/io/BufferedReader.java
\
java/io/BufferedReader.java
\
...
@@ -584,10 +628,12 @@ java/util/zip/CRC32.java \
...
@@ -584,10 +628,12 @@ java/util/zip/CRC32.java \
java/util/zip/Checksum.java
\
java/util/zip/Checksum.java
\
java/util/zip/Deflater.java
\
java/util/zip/Deflater.java
\
java/util/zip/DeflaterOutputStream.java
\
java/util/zip/DeflaterOutputStream.java
\
java/util/zip/InflaterInputStream.java
\
java/util/zip/ZipConstants.java
\
java/util/zip/ZipConstants.java
\
java/util/zip/ZipEntry.java
\
java/util/zip/ZipEntry.java
\
java/util/zip/ZipException.java
\
java/util/zip/ZipException.java
\
java/util/zip/ZipFile.java
\
java/util/zip/ZipFile.java
\
java/util/zip/ZipInputStream.java
\
java/util/zip/ZipOutputStream.java
java/util/zip/ZipOutputStream.java
java_source_files
=
$(ordinary_java_source_files)
$(special_java_source_files)
java_source_files
=
$(ordinary_java_source_files)
$(special_java_source_files)
...
@@ -608,6 +654,8 @@ c_source_files = \
...
@@ -608,6 +654,8 @@ c_source_files = \
java/lang/e_sqrt.c java/lang/s_scalbn.c java/lang/sf_rint.c
\
java/lang/e_sqrt.c java/lang/s_scalbn.c java/lang/sf_rint.c
\
java/lang/k_cos.c java/lang/s_sin.c
java/lang/k_cos.c java/lang/s_sin.c
#java/awt/natToolkit.cc
## This lists all the C++ source files in subdirectories.
## This lists all the C++ source files in subdirectories.
nat_source_files
=
\
nat_source_files
=
\
gnu/gcj/convert/JIS0208_to_Unicode.cc
\
gnu/gcj/convert/JIS0208_to_Unicode.cc
\
...
...
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