forked from I2P_Developers/i2p.i2p

- add kFreeBSD to NBI and CPUID - add kFreeBSD to jcpuid/jbigi build scripts - refresh debian patches to compensate for kFreeBSD changes - i2prouter: Detect kFreeBSD and normalize its name - clean up osid (switching to "elif") and adding support for detecting kFreeBSD - update postinstall.sh; I2P cannot be installed using gij so postinstall.sh will not be run. If/when openjdk finally comes to kFreeBSD, we'll be ready for it.
26 lines
866 B
Diff
26 lines
866 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 | 6 +++---
|
|
1 files changed, 3 insertions(+), 3 deletions(-)
|
|
|
|
--- a/core/c/jcpuid/build.sh
|
|
+++ b/core/c/jcpuid/build.sh
|
|
@@ -67,12 +67,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
|