mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-01-19 03:53:58 +08:00
Makefile.in: Rebuilt.
* Makefile.in: Rebuilt. * Makefile.am (secdir): New macro. (install-data-local): Install new data files. * java/security/classpath.security: New file. * java/security/libgcj.security: New file. From-SVN: r46326
This commit is contained in:
parent
fcb4e2ef92
commit
9c48b4d1e4
@ -1,5 +1,11 @@
|
||||
2001-10-17 Tom Tromey <tromey@redhat.com>
|
||||
|
||||
* Makefile.in: Rebuilt.
|
||||
* Makefile.am (secdir): New macro.
|
||||
(install-data-local): Install new data files.
|
||||
* java/security/classpath.security: New file.
|
||||
* java/security/libgcj.security: New file.
|
||||
|
||||
* java/security/Security.java (loadProviders): Added `vendor'
|
||||
argument.
|
||||
Load both `classpath' and `java.vm.name' providers.
|
||||
|
@ -33,6 +33,9 @@ toolexeclib_LTLIBRARIES = libgcj.la $(cond_x_ltlibrary)
|
||||
toolexeclib_DATA = libgcj.spec
|
||||
data_DATA = libgcj.jar
|
||||
|
||||
## FIXME: Using libdir violates GNU coding standards.
|
||||
secdir = $(libdir)/security
|
||||
|
||||
## For now, only on native systems. FIXME.
|
||||
if NATIVE
|
||||
bin_PROGRAMS = jv-convert gij rmic rmiregistry
|
||||
@ -352,6 +355,13 @@ install-data-local:
|
||||
echo " $(INSTALL_DATA) $$p $(DESTDIR)$(includedir)/$$f"; \
|
||||
$(INSTALL_DATA) $$p $(DESTDIR)$(includedir)/$$f; \
|
||||
done
|
||||
## FIXME: the obvious approach using lib_DATA doesn't work with
|
||||
## automake 1.4.
|
||||
$(mkinstalldirs) $(DESTDIR)$(secdir)
|
||||
@for f in classpath.security libgcj.security; do \
|
||||
echo " $(INSTALL_DATA) $(srcdir)/java/security/$$f $(DESTDIR)$(secdir)/$$f"; \
|
||||
$(INSTALL_DATA) $(srcdir)/java/security/$$f $(DESTDIR)$(secdir)/$$f; \
|
||||
done
|
||||
|
||||
## ################################################################
|
||||
|
||||
|
1177
libjava/Makefile.in
1177
libjava/Makefile.in
File diff suppressed because one or more lines are too long
1
libjava/java/security/classpath.security
Normal file
1
libjava/java/security/classpath.security
Normal file
@ -0,0 +1 @@
|
||||
security.provider.1=gnu.java.security.provider.Gnu
|
2
libjava/java/security/libgcj.security
Normal file
2
libjava/java/security/libgcj.security
Normal file
@ -0,0 +1,2 @@
|
||||
# This properties file is used when looking for gcj-specific
|
||||
# security providers. By default there are none such.
|
Loading…
Reference in New Issue
Block a user