Update how we detect if libc5 is in use.

-Erik
This commit is contained in:
Eric Andersen
2001-04-09 23:52:18 +00:00
parent d3f97f1971
commit b6b519b416
15 changed files with 44 additions and 53 deletions

View File

@@ -41,11 +41,9 @@ extern int dutmp_main(int argc, char **argv)
}
}
/* Kludge around the fact that the binary format for utmp has changed, and the
* fact the stupid libc doesn't have a reliable #define to announce that libc5
* is being used. sigh.
*/
#if ! defined __GLIBC__ || defined __UCLIBC__
/* Kludge around the fact that the binary format for utmp has changed. */
#if __GNU_LIBRARY__ < 5
/* Linux libc5 */
while (read(file, (void*)&ut, sizeof(struct utmp))) {
printf("%d|%d|%s|%s|%s|%s|%s|%lx\n",
ut.ut_type, ut.ut_pid, ut.ut_line,
@@ -54,6 +52,7 @@ extern int dutmp_main(int argc, char **argv)
(long)ut.ut_addr);
}
#else
/* Glibc, uClibc, etc */
while (read(file, (void*)&ut, sizeof(struct utmp))) {
printf("%d|%d|%s|%s|%s|%s|%d|%d|%ld|%ld|%ld|%x\n",
ut.ut_type, ut.ut_pid, ut.ut_line,

View File

@@ -33,11 +33,11 @@
#include <unistd.h> /* for getopt() */
#include <stdlib.h>
#if defined(__GLIBC__)
#include <sys/kdaemon.h>
#if __GNU_LIBRARY__ > 5
#include <sys/kdaemon.h>
#else
extern int bdflush (int func, long int data);
#endif /* __GLIBC__ */
extern int bdflush (int func, long int data);
#endif
#include "busybox.h"