Source: clearsilver Severity: minor Tags: patch User: pkg-llvm-t...@lists.alioth.debian.org Usertags: clang-ftbfs
Hello, Using the rebuild infrastructure, your package fails to build with clang (instead of gcc). We detected this kinf of error: http://clang.debian.net/status.php?version=3.4.2&key=EXPECTED_DECLARATION Full build log is available here: http://clang.debian.net/logs/2014-06-16/clearsilver_0.10.5-1.3_unstable_clang.log Thanks, Alexander -- System Information: Debian Release: jessie/sid APT prefers unstable APT policy: (500, 'unstable'), (1, 'experimental') Architecture: amd64 (x86_64) Foreign Architectures: i386 Kernel: Linux 3.2.0-4-amd64 (SMP w/4 CPU cores) Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash
--- ./util/neo_err.h 2007-07-12 07:09:09.000000000 +0400 +++ ../clearsilver-0.10.5-my/./util/neo_err.h 2014-07-25 01:20:37.190677890 +0400 @@ -85,7 +85,7 @@ */ #if defined(USE_C99_VARARG_MACROS) #define nerr_raise(e,f,...) \ - nerr_raisef(__PRETTY_FUNCTION__,__FILE__,__LINE__,e,f,__VA_ARGS__) + nerr_raisef(__PRETTY_FUNCTION__,__FILE__,__LINE__,e,f, ##__VA_ARGS__) #elif defined(USE_GNUC_VARARG_MACROS) #define nerr_raise(e,f,a...) \ nerr_raisef(__PRETTY_FUNCTION__,__FILE__,__LINE__,e,f,##a) @@ -99,7 +99,7 @@ #if defined(USE_C99_VARARG_MACROS) #define nerr_raise_errno(e,f,...) \ - nerr_raise_errnof(__PRETTY_FUNCTION__,__FILE__,__LINE__,e,f,__VA_ARGS__) + nerr_raise_errnof(__PRETTY_FUNCTION__,__FILE__,__LINE__,e,f, ##__VA_ARGS__) #elif defined(USE_GNUC_VARARG_MACROS) #define nerr_raise_errno(e,f,a...) \ nerr_raise_errnof(__PRETTY_FUNCTION__,__FILE__,__LINE__,e,f,##a)