diff options
author | ryoon <ryoon@pkgsrc.org> | 2014-01-09 12:17:32 +0000 |
---|---|---|
committer | ryoon <ryoon@pkgsrc.org> | 2014-01-09 12:17:32 +0000 |
commit | 2b44b7625ded7b62fc2cbd4026396aae860beb56 (patch) | |
tree | ef0db7149f87e4bc3f117e7002cadbf683a4f092 | |
parent | 64340b2fbbb2046c24bf78f5d3bb5da943dda408 (diff) | |
download | pkgsrc-2b44b7625ded7b62fc2cbd4026396aae860beb56.tar.gz |
Fix build. Add a forgotten patch.
-rw-r--r-- | games/supertuxkart/patches/patch-src_utils_log.hpp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/games/supertuxkart/patches/patch-src_utils_log.hpp b/games/supertuxkart/patches/patch-src_utils_log.hpp new file mode 100644 index 00000000000..575ab5878a5 --- /dev/null +++ b/games/supertuxkart/patches/patch-src_utils_log.hpp @@ -0,0 +1,14 @@ +$NetBSD: patch-src_utils_log.hpp,v 1.1 2014/01/09 12:17:32 ryoon Exp $ + +--- src/utils/log.hpp.orig 2013-11-15 11:43:21.000000000 +0000 ++++ src/utils/log.hpp +@@ -26,7 +26,8 @@ + #include <stdlib.h> + #include <string> + +-#ifdef __GNUC__ ++#if defined(__GNUC__ ) ++typedef __builtin_va_list __gnuc_va_list; + # define VALIST __gnuc_va_list + #else + # define VALIST char* |