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
5 changed files with 1149 additions and 47 deletions
|
@ -1,5 +1,11 @@
|
||||||
2001-10-17 Tom Tromey <tromey@redhat.com>
|
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'
|
* java/security/Security.java (loadProviders): Added `vendor'
|
||||||
argument.
|
argument.
|
||||||
Load both `classpath' and `java.vm.name' providers.
|
Load both `classpath' and `java.vm.name' providers.
|
||||||
|
|
|
@ -33,6 +33,9 @@ toolexeclib_LTLIBRARIES = libgcj.la $(cond_x_ltlibrary)
|
||||||
toolexeclib_DATA = libgcj.spec
|
toolexeclib_DATA = libgcj.spec
|
||||||
data_DATA = libgcj.jar
|
data_DATA = libgcj.jar
|
||||||
|
|
||||||
|
## FIXME: Using libdir violates GNU coding standards.
|
||||||
|
secdir = $(libdir)/security
|
||||||
|
|
||||||
## For now, only on native systems. FIXME.
|
## For now, only on native systems. FIXME.
|
||||||
if NATIVE
|
if NATIVE
|
||||||
bin_PROGRAMS = jv-convert gij rmic rmiregistry
|
bin_PROGRAMS = jv-convert gij rmic rmiregistry
|
||||||
|
@ -352,6 +355,13 @@ install-data-local:
|
||||||
echo " $(INSTALL_DATA) $$p $(DESTDIR)$(includedir)/$$f"; \
|
echo " $(INSTALL_DATA) $$p $(DESTDIR)$(includedir)/$$f"; \
|
||||||
$(INSTALL_DATA) $$p $(DESTDIR)$(includedir)/$$f; \
|
$(INSTALL_DATA) $$p $(DESTDIR)$(includedir)/$$f; \
|
||||||
done
|
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…
Add table
Add a link
Reference in a new issue