/[classpath]/classpath/configure.ac
ViewVC logotype

Diff of /classpath/configure.ac

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.43.2.3 by gnu_andrew, Sat Jan 15 17:01:37 2005 UTC revision 1.43.2.4 by gnu_andrew, Sun Jan 16 02:14:45 2005 UTC
# Line 6  dnl ------------------------------------ Line 6  dnl ------------------------------------
6  dnl define([AC_CACHE_LOAD], )dnl  dnl define([AC_CACHE_LOAD], )dnl
7  dnl define([AC_CACHE_SAVE], )dnl  dnl define([AC_CACHE_SAVE], )dnl
8    
9  AC_INIT([GNU Classpath],[0.11+cvs],[classpath@gnu.org],[classpath])  AC_INIT([GNU Classpath],[0.12+cvs],[classpath@gnu.org],[classpath])
10  AC_CONFIG_SRCDIR(java/lang/System.java)  AC_CONFIG_SRCDIR(java/lang/System.java)
11    
12  AC_CANONICAL_TARGET  AC_CANONICAL_TARGET
# Line 46  dnl ------------------------------------ Line 46  dnl ------------------------------------
46  dnl Whether to compile with -Werror or not (enabled by default)  dnl Whether to compile with -Werror or not (enabled by default)
47  dnl -----------------------------------------------------------  dnl -----------------------------------------------------------
48  AC_ARG_ENABLE([Werror],  AC_ARG_ENABLE([Werror],
49                [AS_HELP_STRING(--disable-Werror,whether to compile C code with -Werror which turns any compiler warning into a compilation failure [default=yes])],                [AS_HELP_STRING(--disable-Werror,whether to compile C code with -Werror which turns any compiler warning into a compilation failure [default=no])],
50                [case "${enableval}" in                [case "${enableval}" in
51                  yes) ENABLE_WERROR=yes ;;                  yes) ENABLE_WERROR=yes ;;
52                  no) ENABLE_WERROR=no ;;                  no) ENABLE_WERROR=no ;;
53                  *) ENABLE_WERROR=yes ;;                  *) ENABLE_WERROR=yes ;;
54                esac],                esac],
55                [ENABLE_WERROR=yes])                [ENABLE_WERROR=no])
56    
57  dnl -----------------------------------------------------------  dnl -----------------------------------------------------------
58  dnl GTK native peer (enabled by default)  dnl GTK native peer (enabled by default)
# Line 287  AC_ARG_ENABLE([load-library], Line 287  AC_ARG_ENABLE([load-library],
287                [INIT_LOAD_LIBRARY="true"])                [INIT_LOAD_LIBRARY="true"])
288  AC_SUBST(INIT_LOAD_LIBRARY)  AC_SUBST(INIT_LOAD_LIBRARY)
289    
290    
291    dnl -----------------------------------------------------------
292    dnl Should the VM explicitly run class initialization subfunctions for
293    dnl java.lang.System?   (default is false -- the subfunctions will be run
294    dnl automatically by the class initializer)
295    dnl -----------------------------------------------------------
296    AC_ARG_ENABLE([java-lang-system-explicit-initialization],
297                  [AS_HELP_STRING(--enable-java-lang-system-explicit-initialization,will the VM explicitly invoke java.lang.System's static initialization methods [default=no])],
298                  [case "${enableval}" in
299                    yes|true) JAVA_LANG_SYSTEM_EXPLICIT_INITIALIZATION="true" ;;
300                    no|false) JAVA_LANG_SYSTEM_EXPLICIT_INITIALIZATION="false" ;;
301                    *) AC_MSG_ERROR(bad value ${enableval} for --enable-java-lang-system-explicit-initialization) ;;
302                  esac],
303                  [JAVA_LANG_SYSTEM_EXPLICIT_INITIALIZATION="false"])
304    AC_SUBST(JAVA_LANG_SYSTEM_EXPLICIT_INITIALIZATION)
305    
306    
307  dnl -----------------------------------------------------------  dnl -----------------------------------------------------------
308  dnl avoiding automake complaints  dnl avoiding automake complaints
309  dnl -----------------------------------------------------------  dnl -----------------------------------------------------------
# Line 370  resource/java/security/Makefile Line 387  resource/java/security/Makefile
387  resource/org/Makefile  resource/org/Makefile
388  resource/org/ietf/Makefile  resource/org/ietf/Makefile
389  resource/org/ietf/jgss/Makefile  resource/org/ietf/jgss/Makefile
390    scripts/Makefile
391  lib/Makefile  lib/Makefile
392  lib/gen-classlist.sh  lib/gen-classlist.sh
393  examples/Makefile])  examples/Makefile])

Legend:
Removed from v.1.43.2.3  
changed lines
  Added in v.1.43.2.4

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26