JBoss Native SVN: r2608 - trunk/build/daemon.
by jbossnative-commits@lists.jboss.org
Author: jfrederic.clere(a)jboss.com
Date: 2009-12-22 04:13:28 -0500 (Tue, 22 Dec 2009)
New Revision: 2608
Modified:
trunk/build/daemon/buildnat.bat
Log:
Also build the static version of dll.
Modified: trunk/build/daemon/buildnat.bat
===================================================================
--- trunk/build/daemon/buildnat.bat 2009-12-01 08:01:30 UTC (rev 2607)
+++ trunk/build/daemon/buildnat.bat 2009-12-22 09:13:28 UTC (rev 2608)
@@ -46,10 +46,15 @@
pushd %BUILD_HOME%\windows
+# dynamic dll (lib*.dll).
call build.bat sdk x86 jboss-native -ssl -cache
call build.bat sdk x64 jboss-native -ssl -cache
call build.bat sdk i64 jboss-native -ssl -cache
+# static dll tcnative-1.dll
+call build.bat sdk x86 jboss-native -ssl -cache -static
+call build.bat sdk x64 jboss-native -ssl -cache -static
+call build.bat sdk i64 jboss-native -ssl -cache -static
REM Uncomment for building sight
REM call build.bat sdk x86 jboss-sight -cache
REM call build.bat sdk x64 jboss-sight -cache
15 years
JBoss Native SVN: r2607 - trunk/build/unix.
by jbossnative-commits@lists.jboss.org
Author: jfrederic.clere(a)jboss.com
Date: 2009-12-01 03:01:30 -0500 (Tue, 01 Dec 2009)
New Revision: 2607
Modified:
trunk/build/unix/build.sh
Log:
Adjust path for java.
Modified: trunk/build/unix/build.sh
===================================================================
--- trunk/build/unix/build.sh 2009-11-27 11:14:49 UTC (rev 2606)
+++ trunk/build/unix/build.sh 2009-12-01 08:01:30 UTC (rev 2607)
@@ -330,6 +330,10 @@
if [ "x${JAVA_HOME}" = "x" ]; then
JAVA_HOME=/System/Library/Frameworks/JavaVM.framework/Versions/CurrentJDK/
export JAVA_HOME
+ java -version 2>/dev/null
+ if [ $? -ne 0 ]; then
+ PATH=$PATH:${JAVA_HOME}/Commands
+ fi
fi
;;
HP-UX*)
15 years, 1 month