-
-
Notifications
You must be signed in to change notification settings - Fork 14.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/master' into staging
- Loading branch information
Showing
33 changed files
with
1,518 additions
and
83 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
38 changes: 38 additions & 0 deletions
38
pkgs/development/libraries/glibc/fix-rpc-types-musl-conflicts.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
@@ -, +, @@ | ||
--- | ||
sunrpc/rpc/types.h | 22 ++++++---------------- | ||
1 file changed, 6 insertions(+), 16 deletions(-) | ||
--- a/sunrpc/rpc/types.h | ||
+++ a/sunrpc/rpc/types.h | ||
@@ -69,24 +69,14 @@ typedef unsigned long rpcport_t; | ||
#include <sys/types.h> | ||
#endif | ||
|
||
-#if defined __APPLE_CC__ || defined __FreeBSD__ | ||
-# define __u_char_defined | ||
-# define __daddr_t_defined | ||
-#endif | ||
- | ||
-#ifndef __u_char_defined | ||
-typedef __u_char u_char; | ||
-typedef __u_short u_short; | ||
-typedef __u_int u_int; | ||
-typedef __u_long u_long; | ||
-typedef __quad_t quad_t; | ||
-typedef __u_quad_t u_quad_t; | ||
-typedef __fsid_t fsid_t; | ||
+/* IMPORTANT NOTE: This has been modified to build against the musl C | ||
+ * library and it probably now ONLY builds with the musl C library. | ||
+ * | ||
+ * See: https://sourceware.org/bugzilla/show_bug.cgi?id=21604 | ||
+ */ | ||
# define __u_char_defined | ||
-#endif | ||
#ifndef __daddr_t_defined | ||
-typedef __daddr_t daddr_t; | ||
-typedef __caddr_t caddr_t; | ||
+typedef int daddr_t; | ||
# define __daddr_t_defined | ||
#endif | ||
|
||
-- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.