forked from I2P_Developers/i2p.i2p

support for Solaris (tested with Solaris 11 x86) mbuild-all.sh: - output correctly formatted file names (tested in Solaris x86, FreeBSD (x86 and x64) and Linux (x86 & x64)) - switch from echo -e to the more portable printf - more error checking, comments debian/patches: refreshed based on changes to core/c/* libjcpuid-x86_64-solaris.so: built in solaris 11 x86 with java 1.7.0_07 and gcc 4.5.2, stripped
26 lines
867 B
Diff
26 lines
867 B
Diff
From: Kill Your TV <killyourtv@i2pmail.org>
|
|
Date: Tue, 24 May 2011 21:26:10 +0000
|
|
Subject: rename jcpuid
|
|
|
|
---
|
|
core/c/jcpuid/build.sh | 8 ++------
|
|
1 file changed, 2 insertions(+), 6 deletions(-)
|
|
|
|
--- a/core/c/jcpuid/build.sh
|
|
+++ b/core/c/jcpuid/build.sh
|
|
@@ -74,12 +74,8 @@
|
|
exit 0;;
|
|
esac
|
|
|
|
- LINKFLAGS="-shared -Wl,-soname,libjcpuid-${ARCH}-${UNIXTYPE}.so"
|
|
- if [ $KFREEBSD -eq 1 ]; then
|
|
- LIBFILE="lib/freenet/support/CPUInformation/libjcpuid-${ARCH}-kfreebsd.so"
|
|
- else
|
|
- LIBFILE="lib/freenet/support/CPUInformation/libjcpuid-${ARCH}-${UNIXTYPE}.so"
|
|
- fi
|
|
+ LINKFLAGS="-shared -Wl,-soname,libjcpuid.so"
|
|
+ LIBFILE="../jbigi/libjcpuid.so"
|
|
COMPILEFLAGS="-fPIC -Wall"
|
|
INCLUDES="-I. -Iinclude -I${JAVA_HOME}/include -I${JAVA_HOME}/include/${UNIXTYPE}";;
|
|
esac
|