From: Rob Landley Date: Tue, 27 Nov 2012 05:24:07 +0000 (-0600) Subject: The headers of uClibc and older glibc got unhappy with O_DIRECTORY and some other... X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9f8217ce73762c0ac4eea8e7ab2120ca6eb1361d;p=platform%2Fupstream%2Ftoybox.git The headers of uClibc and older glibc got unhappy with O_DIRECTORY and some other stuff. Fix it up in portability.h. --- diff --git a/lib/portability.h b/lib/portability.h index 1b5667c..4903de1 100644 --- a/lib/portability.h +++ b/lib/portability.h @@ -19,20 +19,28 @@ #include -#ifdef __GLIBC__ +#ifndef O_DIRECTORY +#define O_DIRECTORY 0200000 +#endif + +#if defined(__GLIBC__) +// "Function prototypes shall be provided." but aren't. +// http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html +char *crypt(const char *key, const char *salt); + // An SUSv4 function that glibc refuses to #define without crazy #defines, // see http://pubs.opengroup.org/onlinepubs/9699919799/functions/strptime.html #include char *strptime(const char *buf, const char *format, struct tm *tm); -// Another one. "Function prototypes shall be provided." but aren't. -// http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/unistd.h.html -char *crypt(const char *key, const char *salt); -// And again, from all the way back in posix-2001 -struct tm *getdate(const char *string); -// When building under obsolete glibc, hold its hand a bit. +// uClibc pretends to be glibc and copied a lot of its bugs, but has a few more +#if defined(__UCLIBC__) +#include +#include +ssize_t getdelim(char **lineptr, size_t *n, int delim, FILE *stream); -#if __GLIBC_MINOR__ < 10 && !defined(__UCLIBC__) +// When building under obsolete glibc, hold its hand a bit. +#elif __GLIBC_MINOR__ < 10 #define AT_FDCWD -100 #define AT_SYMLINK_NOFOLLOW 0x100 #define AT_REMOVEDIR 0x200