diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2014-02-11 15:41:48 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2014-02-11 15:41:54 +0000 |
commit | 8f186ca09b4ff2e507f07fb34a46702ab3f6dbac (patch) | |
tree | 5e65d3fa8f53fc22e0928c7f4253cdfc5fdfb029 /main/procps/fix-musl.patch | |
parent | 4172a700fb692abf6ec69eb708f53c5f6d9281ce (diff) | |
download | aports-8f186ca09b4ff2e507f07fb34a46702ab3f6dbac.tar.bz2 aports-8f186ca09b4ff2e507f07fb34a46702ab3f6dbac.tar.xz |
main/procps: upgrade to 3.3.9 and fix musl build
Diffstat (limited to 'main/procps/fix-musl.patch')
-rw-r--r-- | main/procps/fix-musl.patch | 102 |
1 files changed, 102 insertions, 0 deletions
diff --git a/main/procps/fix-musl.patch b/main/procps/fix-musl.patch new file mode 100644 index 0000000000..d6924b9a3d --- /dev/null +++ b/main/procps/fix-musl.patch @@ -0,0 +1,102 @@ +diff --git a/configure.ac b/configure.ac +index f08867c..a0150f0 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -45,7 +45,7 @@ AC_PROG_RANLIB + + # Checks for header files. + AC_HEADER_MAJOR +-AC_CHECK_HEADERS([arpa/inet.h fcntl.h langinfo.h libintl.h limits.h locale.h netinet/in.h stdint.h stdio_ext.h stdlib.h string.h sys/file.h sys/ioctl.h sys/param.h sys/time.h termios.h unistd.h utmp.h values.h wchar.h wctype.h]) ++AC_CHECK_HEADERS([arpa/inet.h fcntl.h langinfo.h libintl.h limits.h locale.h netinet/in.h stdint.h stdio_ext.h stdlib.h string.h sys/file.h sys/ioctl.h sys/param.h sys/time.h termios.h unistd.h utmp.h values.h wchar.h wctype.h error.h]) + + # Checks for typedefs, structures, and compiler characteristics. + AC_CHECK_HEADER_STDBOOL +@@ -235,7 +235,9 @@ if test "x$enable_numa" = xno; then + else + AC_SEARCH_LIBS([dlopen], [dl], [], + [AC_MSG_ERROR([dynamic linking unavailable, circumvent with --disable-numa])]) +- DL_LIB="$ac_cv_search_dlopen" ++ if test "x$ac_cv_search_dlopen" != "xnone required"; then ++ DL_LIB="$ac_cv_search_dlopen" ++ fi + fi + AC_SUBST([DL_LIB]) + +diff --git a/lib/nsutils.c b/lib/nsutils.c +index b97f446..a166a74 100644 +--- a/lib/nsutils.c ++++ b/lib/nsutils.c +@@ -1,5 +1,4 @@ + #include <errno.h> +-#include <error.h> + #include <stdio_ext.h> + #include <stdlib.h> + #include <sys/types.h> +diff --git a/ps/display.c b/ps/display.c +index c20285d..b8d8fd5 100644 +--- a/ps/display.c ++++ b/ps/display.c +@@ -25,7 +25,9 @@ + #include <stdlib.h> + #include <string.h> + #include <unistd.h> ++#ifdef HAVE_ERROR_H + #include <error.h> ++#endif + + #include <sys/sysmacros.h> + #include <sys/types.h> +@@ -63,7 +65,12 @@ static void signal_handler(int signo){ + case SIGUSR2: + exit(EXIT_FAILURE); + default: ++#ifdef HAVE_ERROR_H + error_at_line(0, 0, __FILE__, __LINE__, "%s", _("please report this bug")); ++#else ++ fflush(stdout); ++ fprintf(stderr, "%s:%u: %s\n", __FILE__, __LINE__, _("please report this bug")); ++#endif + signal(signo, SIG_DFL); /* allow core file creation */ + kill(getpid(), signo); + } +diff --git a/ps/global.c b/ps/global.c +index b75f728..d4d36a8 100644 +--- a/ps/global.c ++++ b/ps/global.c +@@ -25,7 +25,9 @@ + #include <string.h> + #include <termios.h> + #include <unistd.h> ++#ifdef HAVE_ERROR_H + #include <error.h> ++#endif + + #include <sys/ioctl.h> + #include <sys/stat.h> +@@ -522,6 +524,11 @@ catastrophic_failure(const char *filename, + unsigned int linenum, + const char *message) + { ++#ifdef HAVE_ERROR_H + error_at_line(0, 0, filename, linenum, "%s", message); ++#else ++ fflush(stdout); ++ fprintf(stderr, "%s:%u: %s\n", filename, linenum, message); ++#endif + exit(EXIT_FAILURE); + } +diff --git a/sysctl.c b/sysctl.c +index bb3e6b7..8afd487 100644 +--- a/sysctl.c ++++ b/sysctl.c +@@ -48,6 +48,10 @@ + #include "proc/procps.h" + #include "proc/version.h" + ++#ifndef GLOB_TILDE ++#define GLOB_TILDE 0 ++#endif ++ + /* + * Globals... + */ |