[pulseaudio-discuss] [PATCH 07/10] build-sys: Move acx_lirc.m4 contents to configure.ac
Maarten Bosmans
mkbosmans at gmail.com
Tue Jun 21 07:01:51 PDT 2011
The file is so small, that it is clearer just to do it in the main file.
---
configure.ac | 9 ++++++++-
m4/acx_lirc.m4 | 6 ------
2 files changed, 8 insertions(+), 7 deletions(-)
delete mode 100644 m4/acx_lirc.m4
diff --git a/configure.ac b/configure.ac
index bc0a4e8..7213db1 100644
--- a/configure.ac
+++ b/configure.ac
@@ -895,8 +895,15 @@ AC_SUBST(LIBWRAP_LIBS)
AC_ARG_ENABLE([lirc],
AS_HELP_STRING([--disable-lirc],[Disable optional LIRC support]))
+LIRC_CFLAGS=
+LIRC_LIBS=
+
AS_IF([test "x$enable_lirc" != "xno"],
- [ACX_LIRC],
+ [
+ HAVE_LIRC=1
+ AC_CHECK_HEADER(lirc/lirc_client.h, [], [HAVE_LIRC=0])
+ AC_CHECK_LIB(lirc_client, lirc_init, [LIRC_LIBS=-llirc_client], [HAVE_LIRC=0])
+ ],
HAVE_LIRC=0)
AS_IF([test "x$enable_lirc" = "xyes" && test "x$HAVE_LIRC" = "x0"],
diff --git a/m4/acx_lirc.m4 b/m4/acx_lirc.m4
deleted file mode 100644
index d3f8ea7..0000000
--- a/m4/acx_lirc.m4
+++ /dev/null
@@ -1,6 +0,0 @@
-AC_DEFUN([ACX_LIRC], [
-LIRC_CFLAGS=
-LIRC_LIBS=
-AC_CHECK_HEADER(lirc/lirc_client.h,[AC_CHECK_LIB(lirc_client,lirc_init,[HAVE_LIRC=1
-LIRC_LIBS=-llirc_client],HAVE_LIRC=0)],HAVE_LIRC=0)
-])
--
1.7.4.1
More information about the pulseaudio-discuss
mailing list