buildroot/package/udftools/0001-configure-Use-AS_IF-macro-for-C99-check.patch
Fabrice Fontaine d71e23b53b package/udftools: bump to version 2.0.1
- Drop first and third patches (already in version)
- Add two upstream patches and refresh second one so that it applies
  cleanly

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2019-09-28 22:40:49 +02:00

28 lines
922 B
Diff

From 02a32d8827e884730d22ddee4c479577cd1e90ac Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Pali=20Roh=C3=A1r?= <pali.rohar@gmail.com>
Date: Wed, 26 Jun 2019 17:41:54 +0200
Subject: [PATCH] configure: Use AS_IF macro for C99 check
[Retrieved from:
https://github.com/pali/udftools/commit/02a32d8827e884730d22ddee4c479577cd1e90ac]
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
configure.ac | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/configure.ac b/configure.ac
index 2db31d0..315fb26 100644
--- a/configure.ac
+++ b/configure.ac
@@ -10,9 +10,7 @@ AC_PROG_CC_C99
AC_DISABLE_SHARED
AM_PROG_LIBTOOL
-if test "$ac_cv_prog_cc_c99" = "no"; then
- AC_MSG_ERROR([Your C compiler does not support ISO C99.])
-fi
+AS_IF([test "$ac_cv_prog_cc_c99" = "no"], [AC_MSG_ERROR([Your C compiler does not support ISO C99.])])
dnl Checks for libraries.
AC_CHECK_LIB(readline, readline, [ ])