Package: src:vidalia Version: 0.2.4-2 Severity: serious Tags: patch Justification: FTBFS User: [email protected] Usertags: kfreebsd
Hi, your package FTBFS on GNU/kFreeBSD because of a faulty #elif statement: | [ 7%] Building CXX object src/common/CMakeFiles/common.dir/ZlibByteArray.o | /build/buildd-vidalia_0.2.4-2-kfreebsd-amd64-XFX9mP/vidalia-0.2.4/src/common/ZlibByteArray.cpp:59:24: error: #elif with no expression | make[3]: *** [src/common/CMakeFiles/common.dir/ZlibByteArray.o] Error 1 Full build logs: https://buildd.debian.org/status/package.php?suite=experimental&p=vidalia Please find attached a patch to fix this. Thanks for considering. Mraw, KiBi.
--- a/src/common/ZlibByteArray.cpp +++ b/src/common/ZlibByteArray.cpp @@ -56,7 +56,7 @@ #ifdef HAVE_LIMITS_H #include <limits.h> -#elif HAVE_SYS_LIMITS_H +#elif defined HAVE_SYS_LIMITS_H #include <sys/limits.h> #endif

