mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-12-16 08:56:40 -05:00
* add support for asynchronous name resolution
* remove directories listing from doxygen git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@330 fefdeb5f-60dc-0310-8127-8f9354f1896f
This commit is contained in:
parent
fb11e45cfd
commit
9b0ec37fcf
4 changed files with 136 additions and 29 deletions
10
configure.ac
10
configure.ac
|
|
@ -133,6 +133,16 @@ AC_SUBST(HOWL_LIBS)
|
|||
AC_SUBST(HAVE_HOWL)
|
||||
AM_CONDITIONAL([HAVE_HOWL], [test "x$HAVE_HOWL" = x1])
|
||||
|
||||
PKG_CHECK_MODULES(LIBASYNCNS, [ libasyncns >= 0.1 ], HAVE_LIBASYNCNS=1, HAVE_LIBASYNCNS=0)
|
||||
AC_SUBST(LIBASYNCNS_CFLAGS)
|
||||
AC_SUBST(LIBASYNCNS_LIBS)
|
||||
AC_SUBST(HAVE_LIBASYNCNS)
|
||||
AM_CONDITIONAL([HAVE_LIBASYNCNS], [test "x$HAVE_LIBASYNCNS" = x1])
|
||||
|
||||
if test "x$HAVE_LIBASYNCNS" != "x0" ; then
|
||||
AC_DEFINE([HAVE_LIBASYNCNS], 1, [Have libasyncns?])
|
||||
fi
|
||||
|
||||
AC_PATH_PROG([M4], [m4 gm4], [no])
|
||||
if test "x$M4" = xno ; then
|
||||
AC_MSG_ERROR([m4 missing])
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue