[vlc-commits] Fix lirc activation after detection

Nicolas Chauvet git at videolan.org
Tue Jan 17 09:24:03 CET 2017


vlc | branch: master | Nicolas Chauvet <kwizart at gmail.com> | Mon Jan 16 22:49:54 2017 +0100| [409c41370f5eae1b7e1b3790a69071a0b9934dd0] | committer: Thomas Guillem

Fix lirc activation after detection

This fix build time activation of lirc.
"true" isn't "yes", so the HAVE_LIRC condition isn't met

This bug was initialy reported as
https://bugzilla.rpmfusion.org/4420

Signed-off-by: Thomas Guillem <thomas at gllm.fr>

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=409c41370f5eae1b7e1b3790a69071a0b9934dd0
---

 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/configure.ac b/configure.ac
index 29eaed9..864ff98 100644
--- a/configure.ac
+++ b/configure.ac
@@ -3931,7 +3931,7 @@ have_lirc="no"
 AS_IF([test "${enable_lirc}" = "yes"], [
   AC_CHECK_HEADER(lirc/lirc_client.h, [
     AC_CHECK_LIB(lirc_client, lirc_init, [
-      have_lirc="true"
+      have_lirc="yes"
     ])
   ])
 ])



More information about the vlc-commits mailing list