diff options
author | Eric Andersen | 2000-07-09 06:59:58 +0000 |
---|---|---|
committer | Eric Andersen | 2000-07-09 06:59:58 +0000 |
commit | 999bf72f49a501e47448010c4ddb06dc03ed1612 (patch) | |
tree | 75d6c4187384bc385d59838834bac80f53a077cd /coreutils | |
parent | e9b527ae48cb9609ea0668974de32da523ebd231 (diff) | |
download | busybox-999bf72f49a501e47448010c4ddb06dc03ed1612.zip busybox-999bf72f49a501e47448010c4ddb06dc03ed1612.tar.gz |
More portability updates. Now compiles cleanly vs glibc, libc5, and uclibc
(except for mkfs_minix and fsck_minix -- and it doesn't yet link vs uclibc due
to missing stuff in the library).
-Erik
Diffstat (limited to 'coreutils')
-rw-r--r-- | coreutils/md5sum.c | 8 | ||||
-rw-r--r-- | coreutils/uudecode.c | 1 | ||||
-rw-r--r-- | coreutils/uuencode.c | 1 |
3 files changed, 10 insertions, 0 deletions
diff --git a/coreutils/md5sum.c b/coreutils/md5sum.c index ffa9e6b..f4a8b99 100644 --- a/coreutils/md5sum.c +++ b/coreutils/md5sum.c @@ -24,6 +24,14 @@ #include <stdio.h> #include <errno.h> #include <ctype.h> +#include <getopt.h> + +/* It turns out that libc5 doesn't have this in its headers + * even though it is actually in the lib. Force it to work */ +#if ! defined __GLIBC__ && ! defined __UCLIBC__ +#define getline __getline +extern _IO_ssize_t getline __P ((char **, size_t *, FILE *)); +#endif //---------------------------------------------------------------------------- //--------md5.c diff --git a/coreutils/uudecode.c b/coreutils/uudecode.c index 752497c..ac33762 100644 --- a/coreutils/uudecode.c +++ b/coreutils/uudecode.c @@ -55,6 +55,7 @@ #include <stdio.h> #include <errno.h> +#include <getopt.h> #include <pwd.h> /*struct passwd *getpwnam();*/ diff --git a/coreutils/uuencode.c b/coreutils/uuencode.c index 97801aa..e4fc1a0 100644 --- a/coreutils/uuencode.c +++ b/coreutils/uuencode.c @@ -56,6 +56,7 @@ #include <stdio.h> #include <errno.h> +#include <getopt.h> #include <pwd.h> #define RW (S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH) |