From 74cec57d8e892ff8ac6d8e570b634ae8d7e94a9f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Revol?= <revol@free.fr> Date: Thu, 8 Feb 2007 22:51:26 +0000 Subject: [PATCH] BeOS specifics: check for Haiku & Zeta (for the future); ignore ldconfig, it just runs here :) ; comment about network checks. Originally committed as revision 7886 to svn://svn.ffmpeg.org/ffmpeg/trunk --- configure | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/configure b/configure index 741362baec4..709ff5da366 100755 --- a/configure +++ b/configure @@ -774,8 +774,8 @@ LIB_INSTALL_EXTRA_CMD='$(RANLIB) "$(libdir)/$(LIB)"' # OS specific targetos=`uname -s` case $targetos in - BeOS) - PREFIX="/boot/home/config" + BeOS|Haiku|Zeta) + PREFIX="$HOME/config" # helps building libavcodec add_cflags "-DPIC -fomit-frame-pointer" # 3 gcc releases known for BeOS, each with ugly bugs @@ -788,6 +788,7 @@ case $targetos in add_cflags "-fno-expensive-optimizations" ;; esac + LDCONFIG="echo ignoring ldconfig" SHFLAGS=-nostart # disable Linux things audio_oss="no" @@ -798,6 +799,7 @@ case $targetos in audio_beos="yes" # no need for libm, but the inet stuff # Check for BONE + # XXX: actually should check for NOT net_server if (echo $BEINCLUDES|grep 'headers/be/bone' >/dev/null); then extralibs="-lbind -lsocket" else -- GitLab