From 90b75256d9981b0e7661fcec2bf8d272e7d34fdc Mon Sep 17 00:00:00 2001 From: Jason Parker Date: Fri, 30 Mar 2007 22:54:01 +0000 Subject: [PATCH] Merged revisions 59573 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r59573 | qwell | 2007-03-30 17:50:31 -0500 (Fri, 30 Mar 2007) | 2 lines Add linux-uclibc host arch..."thingy". Sorry, I don't know what it's called... ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@59574 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- acinclude.m4 | 2 +- configure | 2 +- main/Makefile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/acinclude.m4 b/acinclude.m4 index ca82c7a9fb..cc1f61e769 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -568,7 +568,7 @@ else fi if test "x$ac_cv_func_fork_works" = xcross; then case $host in - *-*-amigaos* | *-*-msdosdjgpp* | *-*-uclinux* ) + *-*-amigaos* | *-*-msdosdjgpp* | *-*-uclinux* | *-*-linux-uclibc* ) # Override, as these systems have only a dummy fork() stub ac_cv_func_fork_works=no ;; diff --git a/configure b/configure index 7b1cbb86a3..00dcbd3a41 100755 --- a/configure +++ b/configure @@ -12821,7 +12821,7 @@ else fi if test "x$ac_cv_func_fork_works" = xcross; then case $host in - *-*-amigaos* | *-*-msdosdjgpp* | *-*-uclinux* ) + *-*-amigaos* | *-*-msdosdjgpp* | *-*-uclinux* | *-*-linux-uclibc* ) # Override, as these systems have only a dummy fork() stub ac_cv_func_fork_works=no ;; diff --git a/main/Makefile b/main/Makefile index 7d05ebfb09..9e0f6f2356 100644 --- a/main/Makefile +++ b/main/Makefile @@ -54,7 +54,7 @@ ifeq ($(wildcard /usr/include/dlfcn.h),) OBJS+=dlfcn.o endif -ifneq ($(findstring $(OSARCH), linux-gnu uclinux ),) +ifneq ($(findstring $(OSARCH), linux-gnu uclinux linux-uclibc ),) ifneq ($(findstring LOADABLE_MODULES,$(MENUSELECT_CFLAGS)),) AST_LIBS+=-ldl endif