source: skype/configure.ac @ ff99090

Last change on this file since ff99090 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
Line 
1AC_INIT([Skype plugin for BitlBee], 1.0, [vmiklos@frugalware.org], bitlbee-skype)
2AC_PROG_CC
3AC_PROG_INSTALL
4
5AC_ARG_ENABLE([debug], AS_HELP_STRING([--enable-debug], [Enable debug support (default: disabled)]), debug=yes)
6AC_MSG_CHECKING(for debug mode request)
7if test x$debug = xyes ; then
8        CFLAGS="-g -Wall -Werror"
9        AC_MSG_RESULT(yes)
10else
11        AC_MSG_RESULT(no)
12fi
13
14dnl Check for bitlbee
15PKG_CHECK_MODULES(BITLBEE, bitlbee)
16CFLAGS="$CFLAGS $BITLBEE_CFLAGS"
17LDFLAGS="$LDFLAGS $BITLBEE_LIBS"
18AC_OUTPUT(config.mak)
19AC_OUTPUT(skyped.conf.dist)
Note: See TracBrowser for help on using the repository browser.