|
From: <br...@us...> - 2009-07-07 04:55:54
|
Revision: 3958
http://openvrml.svn.sourceforge.net/openvrml/?rev=3958&view=rev
Author: braden
Date: 2009-07-07 04:55:50 +0000 (Tue, 07 Jul 2009)
Log Message:
-----------
Added ppc, ppc64 awareness to search path for libjvm.
Modified Paths:
--------------
trunk/ChangeLog
trunk/configure.ac
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2009-07-07 03:41:28 UTC (rev 3957)
+++ trunk/ChangeLog 2009-07-07 04:55:50 UTC (rev 3958)
@@ -1,3 +1,8 @@
+2009-07-07 Braden McDaniel <br...@en...>
+
+ * configure.ac: Added ppc, ppc64 awareness to search path for
+ libjvm.
+
2009-07-05 Braden McDaniel <br...@en...>
Updates for 0.18.1 release.
Modified: trunk/configure.ac
===================================================================
--- trunk/configure.ac 2009-07-07 03:41:28 UTC (rev 3957)
+++ trunk/configure.ac 2009-07-07 04:55:50 UTC (rev 3958)
@@ -359,9 +359,11 @@
[AC_HELP_STRING([--disable-script-node-java],
[disable Script node Java support])])
case $target_cpu in
- x86_64) OPENVRML_JVM_ARCH=amd64 ;;
- i?86) OPENVRML_JVM_ARCH=i386 ;;
- *) OPENVRML_JVM_ARCH=$target_cpu ;;
+ x86_64) OPENVRML_JVM_ARCH=amd64 ;;
+ i?86) OPENVRML_JVM_ARCH=i386 ;;
+ powerpc64) OPENVRML_JVM_ARCH=ppc64 ;;
+ powerpc) OPENVRML_JVM_ARCH=ppc ;;
+ *) OPENVRML_JVM_ARCH=$target_cpu ;;
esac
AC_SUBST([OPENVRML_JVM_ARCH])
AS_IF([test X$enable_script_node_java != Xno],
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|