From: Jason Parker Date: Fri, 30 Mar 2007 22:50:31 +0000 (+0000) Subject: Add linux-uclibc host arch..."thingy". Sorry, I don't know what it's called... X-Git-Tag: 1.4.7.1~497 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=40252c62c957b91ffc0115cc49a67a7282bad532;p=thirdparty%2Fasterisk.git Add linux-uclibc host arch..."thingy". Sorry, I don't know what it's called... git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@59573 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/acinclude.m4 b/acinclude.m4 index 3df4b14920..fc4311ab05 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -514,7 +514,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 226c11b536..f545093fe7 100755 --- a/configure +++ b/configure @@ -12577,7 +12577,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 b8def5541f..34c85b2d6e 100644 --- a/main/Makefile +++ b/main/Makefile @@ -51,7 +51,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