- added AM_CONDITIONAL for STATIC_CLASSPATH
authortwisti <none@none>
Fri, 13 May 2005 14:36:32 +0000 (14:36 +0000)
committertwisti <none@none>
Fri, 13 May 2005 14:36:32 +0000 (14:36 +0000)
- added src/native/tools/Makefile

configure.in

index 7a393579796f47ee0519f66560ce5f253dfe53aa..aa1d8705eaca03f702c9b3b592c8cf69d4d9dec0 100644 (file)
@@ -102,16 +102,19 @@ AC_ARG_ENABLE([dynamicclasspath], [AS_HELP_STRING(--disable-dynamicclasspath, li
 dnl force static classpath linking ??
 AC_MSG_CHECKING(Link classpath static)
 if test "xno" == "x$use_dynamicclasspath"; then
-  STATIC_CLASSPATH="1"
+       STATIC_CLASSPATH="1"
 fi
 
 if test "$STATIC_CLASSPATH" == "1"; then
        AC_MSG_RESULT(yes)
+       AM_CONDITIONAL([STATIC_CLASSPATH], [true])
 else
        AC_MSG_RESULT(no)
+       AM_CONDITIONAL([STATIC_CLASSPATH], [false])
 fi
 AC_SUBST(STATIC_CLASSPATH)
 
+
 dnl Checks for programs.
 AC_PROG_CC
 AM_PROG_AS
@@ -395,6 +398,7 @@ AC_CONFIG_FILES([Makefile]
                [src/mm/Makefile]
                [src/native/Makefile]
                [src/native/include/Makefile]
+               [src/native/tools/Makefile]
                [src/native/vm/Makefile]
                [src/scripts/Makefile]
                [src/scripts/cacao]