@@ -, +, @@ --- configure.ac | 2 +- include/compat/sys/types.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) --- a/configure.ac +++ a/configure.ac @@ -91,7 +91,7 @@ AM_CONDITIONAL([HOST_CPU_IS_INTEL], [test "x$HOSTARCH" = "xintel"]) AC_MSG_CHECKING([if .gnu.warning accepts long strings]) AC_LINK_IFELSE([AC_LANG_SOURCE([[ extern void SSLv3_method(); -__asm__(".section .gnu.warning.SSLv3_method; .ascii \"SSLv3_method is insecure\" ; .text"); +__asm__(".section .gnu.warning.SSLv3_method\n\t.ascii \"SSLv3_method is insecure\"\n\t.text"); int main() {return 0;} ]])], [ AC_DEFINE(HAS_GNU_WARNING_LONG, 1, [Define if .gnu.warning accepts long strings.]) --- a/include/compat/sys/types.h +++ a/include/compat/sys/types.h @@ -62,7 +62,7 @@ typedef SSIZE_T ssize_t; #if defined(__GNUC__) && defined (HAS_GNU_WARNING_LONG) #define __warn_references(sym,msg) \ __asm__(".section .gnu.warning." __STRING(sym) \ - " ; .ascii \"" msg "\" ; .text"); + "\n\t.ascii \"" msg "\"\n\t.text"); #else #define __warn_references(sym,msg) #endif --