From a3374a76f040199a32cb4d57af40388c2ad70cd9 Mon Sep 17 00:00:00 2001 From: Maxim Sobolev Date: Fri, 22 Aug 2008 22:11:30 +0000 Subject: Fix obscure build error in the port. Basically, depending on versions of some externals packages (I suspect it's autotools), files openh323buildopts.h and ptbuildopts.h can be generated with either tab or space after #define. As a result, configure in some case could have failed to grep the correct field. Reported by: Rodrigo Graeff --- net/asterisk16/files/patch-configure | 34 ++++++++++++++++++++++++++-------- 1 file changed, 26 insertions(+), 8 deletions(-) (limited to 'net/asterisk16/files/patch-configure') diff --git a/net/asterisk16/files/patch-configure b/net/asterisk16/files/patch-configure index adb7268b02b2..4d27e995629c 100644 --- a/net/asterisk16/files/patch-configure +++ b/net/asterisk16/files/patch-configure @@ -3,7 +3,7 @@ $FreeBSD$ --- configure.orig +++ configure -@@ -3926,8 +3926,6 @@ +@@ -3951,8 +3951,6 @@ case "${host_os}" in freebsd*) ac_default_prefix=/usr/local @@ -12,7 +12,16 @@ $FreeBSD$ ;; *) ac_default_prefix=/usr -@@ -26228,6 +26226,7 @@ +@@ -27517,7 +27515,7 @@ + + + if test "${HAS_PWLIB:-unset}" != "unset"; then +- PWLIB_VERSION=`grep "PWLIB_VERSION" ${PWLIB_INCDIR}/ptbuildopts.h | cut -f2 -d ' ' | sed -e 's/"//g'` ++ PWLIB_VERSION=`grep "PWLIB_VERSION" ${PWLIB_INCDIR}/ptbuildopts.h | tr '\t' ' ' | cut -f3 -d ' ' | sed -e 's/"//g'` + PWLIB_MAJOR_VERSION=`echo ${PWLIB_VERSION} | cut -f1 -d.` + PWLIB_MINOR_VERSION=`echo ${PWLIB_VERSION} | cut -f2 -d.` + PWLIB_BUILD_NUMBER=`echo ${PWLIB_VERSION} | cut -f3 -d.` +@@ -28118,6 +28116,7 @@ cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_includes_default @@ -20,7 +29,7 @@ $FreeBSD$ #include <${HOME}/openh323/include/h323.h> _ACEOF rm -f conftest.$ac_objext -@@ -26268,6 +26267,7 @@ +@@ -28158,6 +28157,7 @@ cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ @@ -28,7 +37,7 @@ $FreeBSD$ #include <${HOME}/openh323/include/h323.h> _ACEOF if { (ac_try="$ac_cpp conftest.$ac_ext" -@@ -26365,6 +26365,7 @@ +@@ -28260,6 +28260,7 @@ cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_includes_default @@ -36,7 +45,7 @@ $FreeBSD$ #include _ACEOF rm -f conftest.$ac_objext -@@ -26405,6 +26406,7 @@ +@@ -28300,6 +28301,7 @@ cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ @@ -44,7 +53,16 @@ $FreeBSD$ #include _ACEOF if { (ac_try="$ac_cpp conftest.$ac_ext" -@@ -26652,7 +26654,7 @@ +@@ -28477,7 +28479,7 @@ + + + if test "${HAS_OPENH323:-unset}" != "unset"; then +- OPENH323_VERSION=`grep "OPENH323_VERSION" ${OPENH323_INCDIR}/openh323buildopts.h | cut -f2 -d ' ' | sed -e 's/"//g'` ++ OPENH323_VERSION=`grep "OPENH323_VERSION" ${OPENH323_INCDIR}/openh323buildopts.h | tr '\t' ' ' | cut -f3 -d ' ' | sed -e 's/"//g'` + OPENH323_MAJOR_VERSION=`echo ${OPENH323_VERSION} | cut -f1 -d.` + OPENH323_MINOR_VERSION=`echo ${OPENH323_VERSION} | cut -f2 -d.` + OPENH323_BUILD_NUMBER=`echo ${OPENH323_VERSION} | cut -f3 -d.` +@@ -28552,7 +28554,7 @@ fi @@ -53,7 +71,7 @@ $FreeBSD$ if test "${HAS_OPENH323:-unset}" != "unset"; then { echo "$as_me:$LINENO: checking OpenH323 installation validity" >&5 -@@ -31800,6 +31802,7 @@ +@@ -34788,6 +34790,7 @@ cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_includes_default @@ -61,7 +79,7 @@ $FreeBSD$ #include _ACEOF rm -f conftest.$ac_objext -@@ -31840,6 +31843,7 @@ +@@ -34828,6 +34831,7 @@ cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ -- cgit v1.2.3