diff options
author | Keri Harris <keri@gentoo.org> | 2016-10-03 18:41:49 +0200 |
---|---|---|
committer | Keri Harris <keri@gentoo.org> | 2016-10-03 18:41:49 +0200 |
commit | 71d148bdef2578ba433562e8994963abcdc00843 (patch) | |
tree | 0ecb8192b6137b37299d948b90558206ddc9fb03 /dev-lang/qu-prolog/files | |
parent | app-emulation/wine: Version bump to 1.9.20 (diff) | |
download | gentoo-71d148bdef2578ba433562e8994963abcdc00843.tar.gz gentoo-71d148bdef2578ba433562e8994963abcdc00843.tar.bz2 gentoo-71d148bdef2578ba433562e8994963abcdc00843.zip |
dev-lang/qu-prolog: build-time fixes for USE=debug
Diffstat (limited to 'dev-lang/qu-prolog/files')
-rw-r--r-- | dev-lang/qu-prolog/files/qu-prolog-10.0-associated-item.patch | 11 | ||||
-rw-r--r-- | dev-lang/qu-prolog/files/qu-prolog-10.0-configure.patch | 21 |
2 files changed, 32 insertions, 0 deletions
diff --git a/dev-lang/qu-prolog/files/qu-prolog-10.0-associated-item.patch b/dev-lang/qu-prolog/files/qu-prolog-10.0-associated-item.patch new file mode 100644 index 000000000000..d5e992d51c26 --- /dev/null +++ b/dev-lang/qu-prolog/files/qu-prolog-10.0-associated-item.patch @@ -0,0 +1,11 @@ +--- qp10.0.orig/src/objects.h 2016-06-07 02:54:35.000000000 +0200 ++++ qp10.0/src/objects.h 2016-10-03 18:26:49.924782008 +0200 +@@ -1210,7 +1210,7 @@ + << this->getName() << "\" "; + + #ifndef WIN32 +- switch (hasAssociatedItem()) ++ switch (tag & AssociatedMask) + { + case AssociatedNone: + std::cerr << "(no info)"; diff --git a/dev-lang/qu-prolog/files/qu-prolog-10.0-configure.patch b/dev-lang/qu-prolog/files/qu-prolog-10.0-configure.patch new file mode 100644 index 000000000000..b3c109613912 --- /dev/null +++ b/dev-lang/qu-prolog/files/qu-prolog-10.0-configure.patch @@ -0,0 +1,21 @@ +--- qp10.0.orig/configure 2016-06-07 02:54:42.000000000 +0200 ++++ qp10.0/configure 2016-10-03 18:30:22.360786524 +0200 +@@ -2256,12 +2256,16 @@ + # + # Check for addtional command line options. + # +-DEBUGGING=" -DNDEBUG " + # Check whether --enable-debug was given. + if test "${enable_debug+set}" = set; then : +- enableval=$enable_debug; DEBUGGING= ++ enableval=$enable_debug; + fi + ++if test "$enable_debug" = yes; then ++ DEBUGGING= ++else ++ DEBUGGING=" -DNDEBUG " ++fi + + + # Single versus multiple thread configuraation. |