mirror of
https://git.jami.net/savoirfairelinux/jami-daemon.git
synced 2025-08-12 22:09:25 +08:00
45 lines
774 B
Plaintext
45 lines
774 B
Plaintext
AC_INIT([SFLphone],[0.8],[sflphoneteam@savoirfairelinux.com],[sflphone])
|
|
AM_CONFIG_HEADER(config.h)
|
|
|
|
PACKAGE=SFLphone
|
|
VERSION=0.9
|
|
|
|
AM_INIT_AUTOMAKE($PACKAGE,$VERSION)
|
|
|
|
AC_ARG_WITH(debug,
|
|
AS_HELP_STRING(
|
|
[--with-debug],
|
|
[Set 'full' to enable debugging information @<:@default=no@:>@]
|
|
),
|
|
[with_debug=${withval}],
|
|
[with_debug=no]
|
|
)
|
|
if test "x$with_debug" = "xfull" -o "x$with_debug" = "xyes"; then
|
|
CFLAGS="$CFLAGS -g -DDEBUG -Wall -Wextra"
|
|
fi
|
|
|
|
AC_PROG_CC
|
|
AC_PROG_INSTALL
|
|
AC_STDC_HEADERS
|
|
|
|
PKG_CHECK_MODULES(DEPS, \
|
|
dbus-glib-1 >= 0.35 \
|
|
libnotify >= 0.4 \
|
|
gtk+-2.0 >= 2.2 \
|
|
glib-2.0 >= 2.2 \
|
|
libsexy >= 0.1 \
|
|
)
|
|
|
|
|
|
AC_SUBST(DEPS_CFLAGS)
|
|
AC_SUBST(DEPS_LIBS)
|
|
|
|
AC_OUTPUT([
|
|
Makefile
|
|
src/Makefile
|
|
pixmaps/Makefile
|
|
sflphone.desktop
|
|
])
|
|
|
|
|