commit dd35f0d9285731bee01ebbf610824fab0f468b6a
parent da0f028dedee8059082e3d117bdb47b08d65e7bd
Author: Antoine Amarilli <a3nm@a3nm.net>
Date: Fri, 26 Dec 2014 16:25:18 +0100
add info about non-systemwide libircclient
Diffstat:
1 file changed, 14 insertions(+), 0 deletions(-)
diff --git a/README b/README
@@ -40,6 +40,20 @@ Once this is done, run "make" to compile irctk. Install it by yourself in a
location of your PATH if you want to use it as "irctk", otherwise replace
"irctk" by "./irctk" in the next examples.
+Alternatively, if you cannot install libircclient system-wide, once you have
+compiled libircclient, issue (in the libircclient folder):
+
+ ln -s src/libircclient.so src/libircclient.so.1
+
+Now go back to the irctk folder, add at the end of the CFLAGS line the
+following, adjusting for the location of the libircclient folder:
+
+ -I/where/you/put/libircclient-1.8/include
+
+Compile with "make", and now run irctk with the following invocation:
+
+ LD_LIBRARY_PATH="/where/you/put/libircclient-1.8/src/:$LD_LIBRARY_PATH" ./irctk
+
== 3. How to use ==
=== 3.1. Connecting to a server ===