Skip to content

Commit

Permalink
Merge pull request conda-forge#7 from ccordoba12/patch-1
Browse files Browse the repository at this point in the history
Don't use system jpeg and png libraries in OS X to avoid mixing libc++ and libstdc++
  • Loading branch information
msarahan committed Jun 4, 2016
2 parents 122940b + 3bd0327 commit b9e9c15
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
7 changes: 4 additions & 3 deletions recipes/qt5/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -89,11 +89,11 @@ if [ `uname` == Darwin ]; then
-skip wayland \
-skip canvas3d \
-skip 3d \
-system-libjpeg \
-system-libpng \
-system-zlib \
-qt-pcre \
-qt-freetype \
-qt-libjpeg \
-qt-libpng \
-c++11 \
-no-framework \
-no-dbus \
Expand All @@ -102,7 +102,8 @@ if [ `uname` == Darwin ]; then
-no-xinput2 \
-no-xcb-xlib \
-no-libudev \
-no-egl
-no-egl \
-no-openssl

DYLD_FALLBACK_LIBRARY_PATH=$PREFIX/lib make -j $MAKE_JOBS
make install
Expand Down
12 changes: 6 additions & 6 deletions recipes/qt5/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,14 +45,14 @@ requirements:
- gst-plugins-base # [linux]
- icu 56*
- jom # [win]
- jpeg
- libpng 1.6*
- jpeg # [not osx]
- libpng 1.6* # [not osx]
- libxcb # [linux]
- m2-gperf # [win]
- m2-bison # [win]
- m2-flex # [win]
- m2-git # [win]
- openssl # [win or linux]
- openssl # [not osx]
- perl >=5.20 # [win]
- python
- xz # [unix]
Expand All @@ -62,12 +62,12 @@ requirements:
- fontconfig # [linux]
- freetype # [linux]
- gst-plugins-base # [linux]
- jpeg
- jpeg # [not osx]
- icu 56*
- libgcc # [linux]
- libpng 1.6*
- libpng 1.6* # [not osx]
- libxcb # [linux]
- openssl # [win or linux]
- openssl # [not osx]
- zlib

about:
Expand Down

0 comments on commit b9e9c15

Please sign in to comment.