From bd6349b88eb9ccfdc565530b1dd93aa714eadf73 Mon Sep 17 00:00:00 2001 From: Adrian Muraru Date: Wed, 3 Oct 2012 22:01:10 +0300 Subject: [PATCH] README: Added autogen.sh instructions --- README | 32 +------------------------------- README.md | 38 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 39 insertions(+), 31 deletions(-) mode change 100755 => 120000 README create mode 100644 README.md diff --git a/README b/README deleted file mode 100755 index 4bdd385c..00000000 --- a/README +++ /dev/null @@ -1,31 +0,0 @@ -This is the Java language binding for 0MQ. - -To build, run: - -./configure -make - -To build Debian package run: - -$ dpkg-buildpackage -rfakeroot - -To build RPM package run: - -$ rpmbuild -tb jzmq-X.Y.Z.tar.gz - -Where X.Y.Z is replaced with the version that you've downloaded. - -If your zmq installation is not found by configure you can add this information manually e.g. --with-zeromq=/usr/local/lib. - -You may want to take a look at http://www.zeromq.org/docs:tuning-zeromq for additional hints. - -For more information, refer to the 0MQ website at http://www.zeromq.org/. - -On Mac OS X you may need to compile and make install pkg-config if configure fails with "syntax error near unexpected token `newline'". See http://stackoverflow.com/questions/3522248/how-do-i-compile-jzmq-for-zeromq-on-osx for details. You may also need to symlink the header files of your standard Java installation (e.g. /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/JavaVM.framework/Versions/CurrentJDK/Headers/*.h) into a suitable directory (e.g. /usr/local/include) and point the JAVA_HOME environment variable to the parent directory (e.g. /usr/local). - -Copying -------- - -Free use of this software is granted under the terms of the GNU Lesser General -Public License (LGPL). For details see the files `COPYING` and `COPYING.LESSER` -included with the Java binding for 0MQ. diff --git a/README b/README new file mode 120000 index 00000000..42061c01 --- /dev/null +++ b/README @@ -0,0 +1 @@ +README.md \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 00000000..4983d2ec --- /dev/null +++ b/README.md @@ -0,0 +1,38 @@ +This is the Java language binding for 0MQ. + +To build you need to have the zeromq library already installed and run: + +```bash +./autogen.sh +./configure +make +``` + + +To build Debian package run: +```bash +$ dpkg-buildpackage -rfakeroot +``` +To build RPM package run: +```bash +$ rpmbuild -tb jzmq-X.Y.Z.tar.gz +``` + +Where X.Y.Z is replaced with the version that you've downloaded. + +If your zmq installation is not found by configure you can add this information manually e.g. `--with-zeromq=/usr/local/lib`. + +You may want to take a look at http://www.zeromq.org/docs:tuning-zeromq for additional hints. + +For more information, refer to the 0MQ website at http://www.zeromq.org/. + +On Mac OS X you may need to compile and make install pkg-config if configure fails with "syntax error near unexpected token newline". +See http://stackoverflow.com/questions/3522248/how-do-i-compile-jzmq-for-zeromq-on-osx for details. +You may also need to symlink the header files of your standard Java installation (e.g. `/Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/JavaVM.framework/Versions/CurrentJDK/Headers/*.h`) into a suitable directory (e.g. `/usr/local/include`) and point the `JAVA_HOME` environment variable to the parent directory (e.g.`/usr/local`). + +Copying +------- + +Free use of this software is granted under the terms of the GNU Lesser General +Public License (LGPL). For details see the files `COPYING` and `COPYING.LESSER` +included with the Java binding for 0MQ.