From mboxrd@z Thu Jan 1 00:00:00 1970 From: prz Subject: crosscompiling with ulibC ... Date: Mon, 30 Jul 2007 16:50:01 +0200 Message-ID: <46ADFA99.8080308@net4u.ch> Reply-To: device-mapper development Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Return-path: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: dm-devel-bounces@redhat.com Errors-To: dm-devel-bounces@redhat.com To: dm-devel@redhat.com List-Id: dm-devel.ids fails due to the broken AC_FUNC_MALLOC on configure (well-known issue with ulibC). Here's the trivia fix if you guys care thanks for the software -- tony --- device-mapper.1.02.21/configure.in 2007-07-30 16:40:03.000000000 +0200 +++ device-mapper.1.02.21/configure.in 2007-07-30 16:40:15.000000000 +0200 @@ -86,6 +86,6 @@ dnl -- Checks for functions AC_CHECK_FUNCS(memset mkdir rmdir strchr strdup strerror strrchr uname,,AC_MSG_ERROR(bailing out)) AC_FUNC_CLOSEDIR_VOID -AC_FUNC_MALLOC +#AC_FUNC_MALLOC AC_FUNC_STAT AC_FUNC_VPRINTF