mirror of
https://git.jami.net/savoirfairelinux/jami-daemon.git
synced 2025-08-12 22:09:25 +08:00
42 lines
711 B
Plaintext
42 lines
711 B
Plaintext
AC_INIT([SFLPhone],[0.8],[sflphoneteam@savoirfairelinux.com],[sflphone])
|
|
AM_CONFIG_HEADER(config.h)
|
|
|
|
PACKAGE=SFLPhone
|
|
VERSION=0.8
|
|
|
|
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 -Werror "
|
|
fi
|
|
|
|
AC_PROG_CC
|
|
AC_PROG_INSTALL
|
|
AC_STDC_HEADERS
|
|
|
|
PKG_CHECK_MODULES(DEPS, \
|
|
dbus-glib-1 >= 0.35 \
|
|
gtk+-2.0 >= 2.2 \
|
|
glib-2.0 >= 2.2 \
|
|
)
|
|
|
|
|
|
AC_SUBST(DEPS_CFLAGS)
|
|
AC_SUBST(DEPS_LIBS)
|
|
|
|
AC_OUTPUT([
|
|
Makefile
|
|
src/Makefile
|
|
pixmaps/Makefile
|
|
])
|
|
|
|
|