diff options
author | Tobia Tesan | 2014-09-21 18:54:18 +0200 |
---|---|---|
committer | Tobia Tesan | 2014-09-21 20:19:53 +0200 |
commit | 651b271f6102fc349c679172e069354049a6626b (patch) | |
tree | fbf28bed52abd04ec79a34071c8820e518d93b9a | |
parent | 5f9febee3d5a103eadc71b50d02d9eb548c0e97f (diff) | |
download | scummvm-rg350-651b271f6102fc349c679172e069354049a6626b.tar.gz scummvm-rg350-651b271f6102fc349c679172e069354049a6626b.tar.bz2 scummvm-rg350-651b271f6102fc349c679172e069354049a6626b.zip |
CONFIGURE: Ask for unity >= 3.8.1
Previously we asked for unity == 3.8.1, which broke things everywhere else
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -3848,8 +3848,8 @@ if test "$_libunity" = auto ; then ;; *) # Unity has a lots of dependencies, update the libs and cflags var with them - LIBUNITY_LIBS="$LIBUNITY_LIBS `pkg-config --libs unity = 3.8.4 2>> "$TMPLOG"`" - LIBUNITY_CFLAGS="$LIBUNITY_CFLAGS `pkg-config --cflags unity = 3.8.4 2>> "$TMPLOG"`" + LIBUNITY_LIBS="$LIBUNITY_LIBS `pkg-config --libs 'unity > 3.8.1' 2>> "$TMPLOG"`" + LIBUNITY_CFLAGS="$LIBUNITY_CFLAGS `pkg-config --cflags 'unity > 3.8.1' 2>> "$TMPLOG"`" _libunity=no cat > $TMPC << EOF #include <unity.h> |