From 4a675b029bc4df2b437b39210264a7702ed5bc75 Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Thu, 31 May 2001 00:16:48 +0000 Subject: [PATCH] Added a .cvsignore file and a README documenting the necessary third party libraries. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@14 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- lib/.cvsignore | 2 ++ lib/README | 25 +++++++++++++++++++++++++ 2 files changed, 27 insertions(+) create mode 100644 lib/.cvsignore create mode 100644 lib/README diff --git a/lib/.cvsignore b/lib/.cvsignore new file mode 100644 index 000000000..b894f024f --- /dev/null +++ b/lib/.cvsignore @@ -0,0 +1,2 @@ +i686-Linux +*.jar diff --git a/lib/README b/lib/README new file mode 100644 index 000000000..8a7148a5e --- /dev/null +++ b/lib/README @@ -0,0 +1,25 @@ +Required external libraries +--------------------------- + +The cocktail code requires the following external Java libraries (JAR +files) to be placed (or symlinked) here in the lib/ directory or in the +shared library directory specified in the build.xml file +(${java.libraries}). + +* The samskivert package: + (check out from CVS: projects/samskivert) + +* MM MySQL driver: + http://mmmysql.sourceforge.net/ + +* Matt Welsh's Non-blocking IO library: + http://www.cs.berkeley.edu/~mdw/proj/java-nbio/ + + (The native code shared library should be built and placed into + lib/i686-Linux where it will be automatically added to LD_LIBRARY_PATH + by the runjava script. Alternatively you can put it into your + LD_LIBRARY_PATH by hand.) + +Once the jar files are in place (regardless of what they are named), the +build system will automatically include them in the compile-time +classpath.