Line | |
---|
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) |
---|
Note: See
TracBrowser
for help on using the repository browser.