]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Don't look for launchd when cross compiling.
authorJoshua Colp <jcolp@digium.com>
Tue, 19 Feb 2008 17:31:32 +0000 (17:31 +0000)
committerJoshua Colp <jcolp@digium.com>
Tue, 19 Feb 2008 17:31:32 +0000 (17:31 +0000)
(closes issue #12029)
Reported by: ovi

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@103812 65c4cc65-6c06-0410-ace0-fbb531ad65f3

configure
configure.ac

index 3adab9868ad2ab133cfb9eba25ee171092f947d2..d238c0be1142302039e4179b545d4f0c61baa57f 100755 (executable)
--- a/configure
+++ b/configure
@@ -1,5 +1,5 @@
 #! /bin/sh
-# From configure.ac Revision: 103713 .
+# From configure.ac Revision: 103722 .
 # Guess values for system-dependent variables and create Makefiles.
 # Generated by GNU Autoconf 2.61 for asterisk 1.4.
 #
@@ -34412,7 +34412,9 @@ fi
 
 
 
-{ echo "$as_me:$LINENO: checking for /sbin/launchd" >&5
+if test "${cross_compiling}" = "no";
+then
+  { echo "$as_me:$LINENO: checking for /sbin/launchd" >&5
 echo $ECHO_N "checking for /sbin/launchd... $ECHO_C" >&6; }
 if test "${ac_cv_file__sbin_launchd+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -34437,6 +34439,7 @@ _ACEOF
 
 fi
 
+fi
 
 PBX_GTK=0
 if test -n "$ac_tool_prefix"; then
index ff346d6db34c8896c3655e49e54971e422f0b75e..545852f0a7559376c53c2f51938fc802226ac99c 100644 (file)
@@ -1466,7 +1466,10 @@ AC_CHECK_HEADER([linux/ixjuser.h], [PBX_IXJUSER=1], [PBX_IXJUSER=0], [
                                   ])
 AC_SUBST(PBX_IXJUSER)
 
-AC_CHECK_FILE(/sbin/launchd, AC_DEFINE([HAVE_SBIN_LAUNCHD], 1, [Define to 1 if your system has /sbin/launchd.]))
+if test "${cross_compiling}" = "no";
+then
+  AC_CHECK_FILE(/sbin/launchd, AC_DEFINE([HAVE_SBIN_LAUNCHD], 1, [Define to 1 if your system has /sbin/launchd.]))
+fi
 
 PBX_GTK=0
 AC_CHECK_TOOL(GTKCONFIG, gtk-config, No)