From 94633b61e9f3383087970921e1677ae1099cfcf5 Mon Sep 17 00:00:00 2001 From: Alejandro Mery Date: Sat, 21 Jul 2007 23:51:58 +0000 Subject: [PATCH] Fixed busybox to compile against dietlibc a bit more, crypt() comes from unistd.h according to POSIX. --- base/busybox/dietlibc.patch | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/base/busybox/dietlibc.patch b/base/busybox/dietlibc.patch index 77a7cd7f7..841e96041 100644 --- a/base/busybox/dietlibc.patch +++ b/base/busybox/dietlibc.patch @@ -26,3 +26,14 @@ /* ============ Misc helpers */ +--- ./libbb/pw_encrypt.c.orig 2007-07-21 19:35:23.000000000 -0400 ++++ ./libbb/pw_encrypt.c 2007-07-21 19:35:36.000000000 -0400 +@@ -8,7 +8,7 @@ + */ + + #include "libbb.h" +-#include ++#include + + char *pw_encrypt(const char *clear, const char *salt) + {