source: skype/configure.ac @ fc26bcb

Last change on this file since fc26bcb was 68312b8, checked in by VMiklos <vmiklos@…>, at 2007-08-21T18:46:37Z

import configure.ac and config.mak.in

  • Property mode set to 100644
File size: 513 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)
Note: See TracBrowser for help on using the repository browser.