0001-drop-werror.patch 711 B

12345678910111213141516171819202122
  1. [PATCH] don't force -Werror in CFLAGS
  2. Released software shouldn't get built with -Werror.
  3. Signed-of-by: Peter Korsgaard <jacmet@sunsite.dk>
  4. ---
  5. configure.ac | 2 +-
  6. 1 file changed, 1 insertion(+), 1 deletion(-)
  7. Index: libomxil-bellagio-0.9.3/configure.ac
  8. ===================================================================
  9. --- libomxil-bellagio-0.9.3.orig/configure.ac
  10. +++ libomxil-bellagio-0.9.3/configure.ac
  11. @@ -5,7 +5,7 @@
  12. AC_PREREQ([2.59])
  13. AC_CONFIG_HEADERS([config.h])
  14. -CFLAGS="${CFLAGS} -Wall -Werror"
  15. +CFLAGS="${CFLAGS} -Wall"
  16. ################################################################################
  17. # Set the shared versioning info, according to section 6.3 of the libtool info #