Imported GNU Classpath 0.19 + gcj-import-20051115.
* sources.am: Regenerated. * Makefile.in: Likewise. * scripts/makemake.tcl: Use glob -nocomplain. From-SVN: r107049
This commit is contained in:
parent
02e549bfaa
commit
8f523f3a10
1241 changed files with 97711 additions and 25284 deletions
|
@ -40,10 +40,8 @@ subdir = scripts
|
|||
DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \
|
||||
$(srcdir)/classpath.spec.in
|
||||
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
||||
am__aclocal_m4_deps = $(top_srcdir)/../../config/depstand.m4 \
|
||||
$(top_srcdir)/../../config/lead-dot.m4 \
|
||||
$(top_srcdir)/../../config/no-executables.m4 \
|
||||
$(top_srcdir)/../../libtool.m4 $(top_srcdir)/m4/accross.m4 \
|
||||
am__aclocal_m4_deps = $(top_srcdir)/../../libtool.m4 \
|
||||
$(top_srcdir)/m4/acattribute.m4 $(top_srcdir)/m4/accross.m4 \
|
||||
$(top_srcdir)/m4/acinclude.m4 $(top_srcdir)/m4/iconv.m4 \
|
||||
$(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \
|
||||
$(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/pkg.m4 \
|
||||
|
@ -76,10 +74,14 @@ CLASSPATH_MODULE = @CLASSPATH_MODULE@
|
|||
CP = @CP@
|
||||
CPP = @CPP@
|
||||
CPPFLAGS = @CPPFLAGS@
|
||||
CREATE_ALSA_LIBRARIES_FALSE = @CREATE_ALSA_LIBRARIES_FALSE@
|
||||
CREATE_ALSA_LIBRARIES_TRUE = @CREATE_ALSA_LIBRARIES_TRUE@
|
||||
CREATE_API_DOCS_FALSE = @CREATE_API_DOCS_FALSE@
|
||||
CREATE_API_DOCS_TRUE = @CREATE_API_DOCS_TRUE@
|
||||
CREATE_CORE_JNI_LIBRARIES_FALSE = @CREATE_CORE_JNI_LIBRARIES_FALSE@
|
||||
CREATE_CORE_JNI_LIBRARIES_TRUE = @CREATE_CORE_JNI_LIBRARIES_TRUE@
|
||||
CREATE_DSSI_LIBRARIES_FALSE = @CREATE_DSSI_LIBRARIES_FALSE@
|
||||
CREATE_DSSI_LIBRARIES_TRUE = @CREATE_DSSI_LIBRARIES_TRUE@
|
||||
CREATE_GTK_PEER_LIBRARIES_FALSE = @CREATE_GTK_PEER_LIBRARIES_FALSE@
|
||||
CREATE_GTK_PEER_LIBRARIES_TRUE = @CREATE_GTK_PEER_LIBRARIES_TRUE@
|
||||
CREATE_JNI_HEADERS_FALSE = @CREATE_JNI_HEADERS_FALSE@
|
||||
|
@ -216,6 +218,7 @@ build_vendor = @build_vendor@
|
|||
datadir = @datadir@
|
||||
default_toolkit = @default_toolkit@
|
||||
exec_prefix = @exec_prefix@
|
||||
glibjdir = @glibjdir@
|
||||
host = @host@
|
||||
host_alias = @host_alias@
|
||||
host_cpu = @host_cpu@
|
||||
|
@ -229,6 +232,7 @@ libexecdir = @libexecdir@
|
|||
localstatedir = @localstatedir@
|
||||
mandir = @mandir@
|
||||
mkdir_p = @mkdir_p@
|
||||
nativelibdir = @nativelibdir@
|
||||
oldincludedir = @oldincludedir@
|
||||
prefix = @prefix@
|
||||
program_transform_name = @program_transform_name@
|
||||
|
|
44
libjava/classpath/scripts/loc
Executable file
44
libjava/classpath/scripts/loc
Executable file
|
@ -0,0 +1,44 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# loc Find a class or package
|
||||
#
|
||||
# Usage: loc [-l] class-pattern [dirname]
|
||||
|
||||
# -l Use system locate command instead of find. In that case, loc
|
||||
# will ignore any directory to be searched.
|
||||
|
||||
# Example:
|
||||
#
|
||||
# $ loc -l org.objectweb.jonas.common.JProp
|
||||
# /var/lib/jonas/demoserver/ejbjars/autoload/mejb.jar
|
||||
# /var/lib/jonas/lib/common/ow_jonas_bootstrap.jar
|
||||
# /var/lib/jonas/eclipseserver/ejbjars/autoload/mejb.jar
|
||||
# /var/lib/jonas/ejbjars/autoload/mejb.jar
|
||||
# /var/cache/jonas/work/ejbjars/jonas/mejb_2005.09.15-17.01.52.jar
|
||||
# /usr/src/redhat/BUILD/jonas-4.3.3/jonas/classes/common/org/objectweb/jonas/common/JProp.class
|
||||
|
||||
|
||||
MODE=$1
|
||||
if test "$MODE" == "-l"; then
|
||||
COMMAND='(locate \*.jar ; locate \*.war)'
|
||||
shift
|
||||
else
|
||||
COMMAND='(find "$FOO" -name \*.jar -follow ; find "$FOO" -name \*.war -follow)'
|
||||
fi
|
||||
|
||||
FOO=$2
|
||||
if test "x$FOO" == "x"; then
|
||||
FOO=/usr/share/java
|
||||
fi
|
||||
|
||||
eval "$COMMAND" 2>/dev/null | while read i; do
|
||||
if (fastjar tf $i 2>/dev/null | grep $1) > /dev/null 2>&1 ; then
|
||||
echo $i
|
||||
fi
|
||||
done
|
||||
|
||||
if test "$MODE" != "-l"; then
|
||||
find "$FOO" -name '*.class' 2>/dev/null | grep $1
|
||||
else
|
||||
locate \*.class | grep $1
|
||||
fi
|
Loading…
Add table
Add a link
Reference in a new issue