You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.3 KiB
51 lines
1.3 KiB
Index: configure |
|
--- configure.orig 2014-06-18 21:10:51.000000000 +0200 |
|
+++ configure 2014-06-19 10:00:02.222774348 +0200 |
|
@@ -3309,10 +3309,7 @@ |
|
if $ac_preproc_ok; then : |
|
|
|
else |
|
- { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 |
|
-$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} |
|
-as_fn_error $? "C preprocessor \"$CPP\" fails sanity check |
|
-See \`config.log' for more details" "$LINENO" 5; } |
|
+ : |
|
fi |
|
|
|
ac_ext=c |
|
Index: src/strlcat.c |
|
--- src/strlcat.c.orig 2013-06-01 17:46:07.000000000 +0200 |
|
+++ src/strlcat.c 2014-06-19 10:00:53.502788898 +0200 |
|
@@ -28,7 +28,7 @@ |
|
#include <string.h> |
|
|
|
#ifdef _LIBC |
|
-# ifdef __weak_alias |
|
+#if defined(__linux) && defined(__weak_alias) |
|
__weak_alias(strlcat, _strlcat) |
|
# endif |
|
#endif |
|
Index: src/unvis.c |
|
--- src/unvis.c.orig 2013-06-01 17:46:07.000000000 +0200 |
|
+++ src/unvis.c 2014-06-19 10:00:02.222774348 +0200 |
|
@@ -49,7 +49,7 @@ |
|
#include <errno.h> |
|
#include <vis.h> |
|
|
|
-#ifdef __weak_alias |
|
+#if defined(__linux) && defined(__weak_alias) |
|
__weak_alias(strnunvisx,_strnunvisx) |
|
#endif |
|
|
|
Index: src/vis.c |
|
--- src/vis.c.orig 2013-06-01 18:09:32.000000000 +0200 |
|
+++ src/vis.c 2014-06-19 10:01:12.773298520 +0200 |
|
@@ -75,7 +75,7 @@ |
|
#include <wchar.h> |
|
#include <wctype.h> |
|
|
|
-#ifdef __weak_alias |
|
+#if defined(__linux) && defined(__weak_alias) |
|
__weak_alias(strvisx,_strvisx) |
|
#endif |
|
|
|
|