diff options
Diffstat (limited to 'net-wireless/gnome-bluetooth/files/gnome-bluetooth-0.7.0-aclocal_openobex.patch')
-rw-r--r-- | net-wireless/gnome-bluetooth/files/gnome-bluetooth-0.7.0-aclocal_openobex.patch | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/net-wireless/gnome-bluetooth/files/gnome-bluetooth-0.7.0-aclocal_openobex.patch b/net-wireless/gnome-bluetooth/files/gnome-bluetooth-0.7.0-aclocal_openobex.patch new file mode 100644 index 000000000000..b57188f99b27 --- /dev/null +++ b/net-wireless/gnome-bluetooth/files/gnome-bluetooth-0.7.0-aclocal_openobex.patch @@ -0,0 +1,68 @@ +diff -Nru gnome-bluetooth-0.7.0.orig/aclocal.m4 gnome-bluetooth-0.7.0/aclocal.m4 +--- gnome-bluetooth-0.7.0.orig/aclocal.m4 2005-11-22 00:23:15.000000000 +0200 ++++ gnome-bluetooth-0.7.0/aclocal.m4 2006-04-22 12:38:30.860704000 +0300 +@@ -6860,64 +6860,6 @@ + AC_MSG_RESULT([$SED]) + ]) + +-dnl Check for openobex library +-dnl Written by Pontus Fuchs 2000-08-18 +-dnl Version checking fixed by Christian W. Zuckschwerdt 2002-10-17 +- +-AC_DEFUN([AM_PATH_OPENOBEX], [ +- AC_PATH_PROG(OPENOBEX_CONFIG, openobex-config, no) +- +- if test "$OPENOBEX_CONFIG" = "no" ; then +- AC_MSG_ERROR(openobex-config not found. Pehaps openobex is not installed.) +- fi +- +- min_obex_version=ifelse([$1], ,0.9.6,$1) +- AC_MSG_CHECKING(for openobex - version >= $min_obex_version) +- +- OPENOBEX_CFLAGS=`$OPENOBEX_CONFIG --cflags` +- OPENOBEX_LIBS=`$OPENOBEX_CONFIG --libs` +- +- obex_config_version=`$OPENOBEX_CONFIG --version` +- +- obex_config_major_version=`$OPENOBEX_CONFIG --version | \ +- sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'` +- obex_config_minor_version=`$OPENOBEX_CONFIG --version | \ +- sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'` +- obex_config_micro_version=`$OPENOBEX_CONFIG --version | \ +- sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'` +- +- obex_req_major_version=`echo $min_obex_version | \ +- sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'` +- obex_req_minor_version=`echo $min_obex_version | \ +- sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'` +- obex_req_micro_version=`echo $min_obex_version | \ +- sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'` +- +- +- if test $obex_req_major_version -lt $obex_config_major_version ; then +- obex_config_version_ok="yes" +- fi +- if test $obex_req_major_version -eq $obex_config_major_version ; then +- if test $obex_req_minor_version -lt $obex_config_minor_version ; then +- obex_config_version_ok="yes" +- fi +- if test $obex_req_minor_version -eq $obex_config_minor_version ; then +- if test $obex_req_micro_version -le $obex_config_micro_version ; then +- obex_config_version_ok="yes" +- fi +- fi +- fi +- +- if test "$obex_config_version_ok" != "yes" ; then +- AC_MSG_ERROR(Installed openobex library too old ($obex_config_version)) +- fi +- +- AC_SUBST(OPENOBEX_CFLAGS) +- AC_SUBST(OPENOBEX_LIBS) +- AC_MSG_RESULT(yes) +-]) +- +- + dnl PKG_CHECK_MODULES(GSTUFF, gtk+-2.0 >= 1.3 glib = 1.3.4, action-if, action-not) + dnl defines GSTUFF_LIBS, GSTUFF_CFLAGS, see pkg-config man page + dnl also defines GSTUFF_PKG_ERRORS on error |