Last change
on this file since ccb50f5 was
c7304b2,
checked in by Miklos Vajna <vmiklos@…>, at 2008-01-12T20:07:10Z
|
auth via ssl
- move the config file to sysconfdir/skyped/skyped.conf as there will other config files there, too
- autogenerate the ssl paths in skyped.conf.dist
- skype plugin: connect via ssl
- skyped: listen via ssl
|
-
Property mode set to
100644
|
File size:
541 bytes
|
Rev | Line | |
---|
[68312b8] | 1 | AC_INIT([Skype plugin for BitlBee], 1.0, [vmiklos@frugalware.org], bitlbee-skype) |
---|
| 2 | AC_PROG_CC |
---|
| 3 | AC_PROG_INSTALL |
---|
| 4 | |
---|
| 5 | AC_ARG_ENABLE([debug], AS_HELP_STRING([--enable-debug], [Enable debug support (default: disabled)]), debug=yes) |
---|
| 6 | AC_MSG_CHECKING(for debug mode request) |
---|
| 7 | if test x$debug = xyes ; then |
---|
| 8 | CFLAGS="-g -Wall -Werror" |
---|
| 9 | AC_MSG_RESULT(yes) |
---|
| 10 | else |
---|
| 11 | AC_MSG_RESULT(no) |
---|
| 12 | fi |
---|
| 13 | |
---|
| 14 | dnl Check for bitlbee |
---|
| 15 | PKG_CHECK_MODULES(BITLBEE, bitlbee) |
---|
| 16 | CFLAGS="$CFLAGS $BITLBEE_CFLAGS" |
---|
| 17 | LDFLAGS="$LDFLAGS $BITLBEE_LIBS" |
---|
| 18 | AC_OUTPUT(config.mak) |
---|
[c7304b2] | 19 | AC_OUTPUT(skyped.conf.dist) |
---|
Note: See
TracBrowser
for help on using the repository browser.