Changeset 455b552
- Timestamp:
- May 31, 2011 7:37:29 PM (10 years ago)
- Branches:
- master
- Children:
- 3677cad
- Parents:
- 60204fe
- Location:
- core/c/jbigi
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
core/c/jbigi/build-all.sh
r60204fe r455b552 4 4 MINGW*) 5 5 echo "Building windows .dlls for all architectures";; 6 SunOS*) 7 echo "Building solaris .sos for all architectures";; 6 8 Linux*) 7 9 echo "Building linux .sos for all architectures";; … … 33 35 MINGW*) 34 36 cp jbigi.dll ../../lib/net/i2p/util/jbigi-windows-$x.dll;; 37 SunOS*) 38 cp libjbigi.so ../../lib/net/i2p/util/libjbigi-solaris-$x.so;; 35 39 Linux*) 36 40 cp libjbigi.so ../../lib/net/i2p/util/libjbigi-linux-$x.so;; -
core/c/jbigi/build_jbigi.sh
r60204fe r455b552 25 25 LINKFLAGS="-dynamiclib -framework JavaVM" 26 26 LIBFILE="libjbigi.jnilib";; 27 SunOS*) 28 COMPILEFLAGS="-fPIC -Wall" 29 INCLUDES="-I. -I../../jbigi/include -I$JAVA_HOME/include -I$JAVA_HOME/include/solaris" 30 LINKFLAGS="-shared -Wl,-soname,libjbigi.so" 31 LIBFILE="libjbigi.so";; 27 32 *) 28 33 COMPILEFLAGS="-fPIC -Wall"
Note: See TracChangeset
for help on using the changeset viewer.