Files in directory transports/fossil from the latest check-in
- libapi
- man
- compat.h
- configure
- explicit_bzero.c
- fchat.3
- fchat.c
- fchat.h
- getprogname.c
- irc.3
- irc.c
- irc.h
- ircfossil.1
- ircfossil.c
- Makefile.m4
- queue.h
- README
- setproctitle.c
- strlcat.c
- strlcpy.c
- strptime.c
- strtonum.c
1. IRCTk fossil to irc bridge README file
Ircfossil is a bridge that let a user chat on a fossil chat, by using an
IRC client. Messages from the fossil chat are relayed to the client in
text form.
Only text messages are supported, files attachments to a message are
ignored at this point in time.
2. Installation
From the project's root:
$ ./configure
$ make
# make install
By default, ircfossil will be installed under /usr/local. To change the
prefix (installing under the user's home in the example):
$ export PREFIX=${HOME}
$ ./configure
$ make
$ make install
For additional compilation options, please check:
$ ./configure -h
To see the ircfossil command line options, once installed, please refer
to the ircfossil(1) man page.
3. Dependencies
* libcurl
4. Tested on
* OpenBSD
* Alpine Linux (Musl libc)
* Debian GNU/Linux (GNU libc)
It should work on FreeBSD and NetBSD without changes.
5. Known issues
On Debian GNU/Linux, the configure script does not work with the
default shell. To run it, do:
$ bash ./configure
6. Author
Andrea Biscuola <a@abiscuola.com>