[gimp/osx-build: 9/31] OS X build: fix poppler issues



commit de715dc9b980ecb14eafb6e8b03ba84c3e7fa30d
Author: Sven Claussner <sclaussner src gnome org>
Date:   Tue May 6 20:40:11 2014 +0200

    OS X build: fix poppler issues
    
    The dependency 'Poppler' fails to build on OS X 10.9 with Clang
    (Apple LLVM version 5.1 (clang-503.0.40) (based on LLVM 3.4svn))
    because it contains the GCC compiler flag '-fno-check-new',
    which is unsupported in Clang. Thus silencing all warnings from
    this dependency.

 build/osx/gimp.modules |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)
---
diff --git a/build/osx/gimp.modules b/build/osx/gimp.modules
index 980a61d..8d70a13 100755
--- a/build/osx/gimp.modules
+++ b/build/osx/gimp.modules
@@ -765,7 +765,8 @@
   </autotools>
 
   <autotools id="poppler"
-             autogen-sh="configure">
+             autogen-sh="configure"
+             autogenargs="--enable-compile-warnings=no">
     <branch module="poppler-0.24.3.tar.xz"
             version="0.24.3"
             repo="poppler"/>


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]