summaryrefslogtreecommitdiff
path: root/m4
diff options
context:
space:
mode:
authorDalibor Topic <robilad@yahoo.com>2008-02-10 23:28:10 +0000
committerDalibor Topic <robilad@yahoo.com>2008-02-10 23:28:10 +0000
commit37b4875653b5703f05fe29c33760378ece171fc6 (patch)
tree4c70bee149426c8642460a2317e63ecd03e185a4 /m4
parenta67d8778bc989feee09bc190d732a45b091982b5 (diff)
downloadclasspath-37b4875653b5703f05fe29c33760378ece171fc6.tar.gz
2008-02-10 Dalibor Topic <robilad@kaffe.org>
* lib/Makefile.am (compile_classpath), include/Makefile.am (JAVAH): Replaced USER_CLASSLIB with PATH_TO_GLIBJ_ZIP. * m4/acinclude.m4 (CLASSPATH_WITH_CLASSLIB)[--with-classpath]: Removed unused option. It's superceded by --with-glibj-zip.
Diffstat (limited to 'm4')
-rw-r--r--m4/acinclude.m422
1 files changed, 0 insertions, 22 deletions
diff --git a/m4/acinclude.m4 b/m4/acinclude.m4
index e9e0bc23a..2a1c17a45 100644
--- a/m4/acinclude.m4
+++ b/m4/acinclude.m4
@@ -234,28 +234,6 @@ dnl CLASSPATH_WITH_CLASSLIB - checks for user specified classpath additions
dnl -----------------------------------------------------------
AC_DEFUN([CLASSPATH_WITH_CLASSLIB],
[
- AC_ARG_WITH([classpath],
- [AS_HELP_STRING(--with-classpath,specify path to a classes.zip like file)],
- [
- if test "x${withval}" = xyes; then
- # set user classpath to CLASSPATH from env
- AC_MSG_CHECKING(for classlib)
- USER_CLASSLIB=${CLASSPATH}
- AC_SUBST(USER_CLASSLIB)
- AC_MSG_RESULT(${USER_CLASSLIB})
- conditional_with_classlib=true
- elif test "x${withval}" != x && test "x${withval}" != xno; then
- # set user classpath to specified value
- AC_MSG_CHECKING(for classlib)
- USER_CLASSLIB=${withval}
- AC_SUBST(USER_CLASSLIB)
- AC_MSG_RESULT(${withval})
- conditional_with_classlib=true
- fi
- ],
- [ conditional_with_classlib=false ])
- AM_CONDITIONAL(USER_SPECIFIED_CLASSLIB, test "x${conditional_with_classlib}" = xtrue)
-
AC_ARG_WITH([vm-classes],
[AS_HELP_STRING(--with-vm-classes,specify path to VM override source files)], [vm_classes="$with_vm_classes"],
[vm_classes='${top_srcdir}/vm/reference'])