summaryrefslogtreecommitdiff
path: root/packages/rp-pppoe/rp-pppoe-3.8/configure_in_cross.patch
diff options
context:
space:
mode:
authorDenys Dmytriyenko <denis@denix.org>2009-03-17 14:32:59 -0400
committerDenys Dmytriyenko <denis@denix.org>2009-03-17 14:32:59 -0400
commit709c4d66e0b107ca606941b988bad717c0b45d9b (patch)
tree37ee08b1eb308f3b2b6426d5793545c38396b838 /packages/rp-pppoe/rp-pppoe-3.8/configure_in_cross.patch
parentfa6cd5a3b993f16c27de4ff82b42684516d433ba (diff)
rename packages/ to recipes/ per earlier agreement
See links below for more details: http://thread.gmane.org/gmane.comp.handhelds.openembedded/21326 http://thread.gmane.org/gmane.comp.handhelds.openembedded/21816 Signed-off-by: Denys Dmytriyenko <denis@denix.org> Acked-by: Mike Westerhof <mwester@dls.net> Acked-by: Philip Balister <philip@balister.org> Acked-by: Khem Raj <raj.khem@gmail.com> Acked-by: Marcin Juszkiewicz <hrw@openembedded.org> Acked-by: Koen Kooi <koen@openembedded.org> Acked-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
Diffstat (limited to 'packages/rp-pppoe/rp-pppoe-3.8/configure_in_cross.patch')
-rw-r--r--packages/rp-pppoe/rp-pppoe-3.8/configure_in_cross.patch136
1 files changed, 0 insertions, 136 deletions
diff --git a/packages/rp-pppoe/rp-pppoe-3.8/configure_in_cross.patch b/packages/rp-pppoe/rp-pppoe-3.8/configure_in_cross.patch
deleted file mode 100644
index 381a44d303..0000000000
--- a/packages/rp-pppoe/rp-pppoe-3.8/configure_in_cross.patch
+++ /dev/null
@@ -1,136 +0,0 @@
-Index: src/configure.in
-===================================================================
---- rp-pppoe-3.8.orig/src/configure.in 2006-04-03 00:29:42.000000000 +1000
-+++ rp-pppoe-3.8/src/configure.in 2007-06-07 22:19:36.000000000 +1000
-@@ -5,6 +5,13 @@
- dnl pppd directory for kernel-mode PPPoE
- PPPD_DIR=ppp-2.4.1.pppoe2
-
-+dnl hard code some paths
-+PPPD=/usr/sbin/pppd
-+ID=/usr/bin/id
-+ECHO=/bin/echo
-+AC_ARG_VAR(PPPD)
-+AC_ARG_VAR(ID)
-+
- AC_CONFIG_HEADER(config.h)
-
- AC_PREFIX_DEFAULT(/usr)
-@@ -44,7 +51,7 @@
- AC_MSG_RESULT($ac_cv_struct_sockaddr_ll)
-
- if test "$ac_cv_struct_sockaddr_ll" = yes ; then
--AC_DEFINE(HAVE_STRUCT_SOCKADDR_LL)
-+AC_DEFINE([HAVE_STRUCT_SOCKADDR_LL], [], [Have struct SOCKADDR_LL])
- fi
-
- dnl Check for N_HDLC line discipline
-@@ -55,7 +62,7 @@
- ac_cv_n_hdlc=no)
- AC_MSG_RESULT($ac_cv_n_hdlc)
- if test "$ac_cv_n_hdlc" = yes ; then
--AC_DEFINE(HAVE_N_HDLC)
-+AC_DEFINE([HAVE_N_HDLC], [], [Have N_HDLC])
- fi
-
- AC_ARG_ENABLE(plugin, [ --enable-plugin=pppd_src_path build pppd plugin], ac_cv_pluginpath=$enableval, ac_cv_pluginpath=no)
-@@ -100,13 +107,13 @@
- if test "$ac_cv_header_linux_if_pppox_h" = yes ; then
- if test "$ac_cv_pluginpath" != no ; then
- LINUX_KERNELMODE_PLUGIN=rp-pppoe.so
-- AC_DEFINE(HAVE_LINUX_KERNEL_PPPOE)
-+ AC_DEFINE([HAVE_LINUX_KERNEL_PPPOE], [], [Have kernel PPPoE])
- PPPD_INCDIR=$ac_cv_pluginpath
- fi
- fi
-
- if test "$ac_cv_debugging" = "yes" ; then
-- AC_DEFINE(DEBUGGING_ENABLED)
-+ AC_DEFINE([DEBUGGING_ENABLED], [], [Debugging enabled])
- fi
-
- AC_SUBST(LINUX_KERNELMODE_PLUGIN)
-@@ -131,15 +138,8 @@
- AC_CHECK_SIZEOF(unsigned int)
- AC_CHECK_SIZEOF(unsigned long)
-
--dnl Check for location of pppd
--AC_PATH_PROG(PPPD, pppd, NOTFOUND, $PATH:/sbin:/usr/sbin:/usr/local/sbin)
--AC_PATH_PROG(ECHO, echo, echo)
--
--dnl Check for setsid (probably Linux-specific)
--AC_PATH_PROG(SETSID, setsid, "", $PATH:/sbin:/usr/sbin:/usr/local/sbin)
--
- dnl Check for an "id" which accepts "-u" option -- hack for Solaris.
--AC_PATH_PROG(ID, id, "", /usr/xpg4/bin:$PATH)
-+dnl AC_PATH_PROG(ID, id, "", /usr/xpg4/bin:$PATH)
-
- dnl Check for Linux-specific kernel support for PPPoE
- AC_MSG_CHECKING(for Linux 2.4.X kernel-mode PPPoE support)
-@@ -183,44 +183,8 @@
- CFLAGS="$CFLAGS -Wall -Wstrict-prototypes -ansi"
- fi
-
--dnl If we couldn't find pppd, die
--if test "$PPPD" = "NOTFOUND"; then
-- AC_MSG_WARN([*** Oops! I couldn't find pppd, the PPP daemon anywhere.])
-- AC_MSG_WARN([*** You must install pppd, version 2.3.10 or later.])
-- AC_MSG_WARN([*** I will keep going, but it may not work.])
-- PPPD=pppd
--fi
--
--dnl Figure out pppd version. 2.3.7 to 2.3.9 -- issue warning. Less than
--dnl 2.3.7 -- stop
--
--PPPD_VERSION=`$PPPD --version 2>&1 | awk ' /version/ {print $NF}'`
--
--case "$PPPD_VERSION" in
--1.*|2.0.*|2.1.*|2.2.*|2.3.0|2.3.1|2.3.2|2.3.3|2.3.4|2.3.5|2.3.6)
-- AC_MSG_WARN([*** Oops! Your version of pppd is $PPPD_VERSION, which is too old.])
-- AC_MSG_WARN([*** You need at least 2.3.7 (2.3.10 or newer recommended.])
-- AC_MSG_WARN([*** I will keep going, but it may not work.])
-- ;;
--
--2.3.7|2.3.8|2.3.9)
-- AC_MSG_WARN([*** Warning. Your version of pppd is $PPPD_VERSION. You will])
-- AC_MSG_WARN([*** not be able to use connect-on-demand. Upgrade to pppd])
-- AC_MSG_WARN([*** 2.3.10 or newer if you need connect-on-demand.])
-- ;;
--
--2*|3*|4*|5*|6*|7*|8*|9*)
-- ;;
--
--*)
-- AC_MSG_WARN([*** Oops. I cannot figure out what version of pppd you have.])
-- AC_MSG_WARN([*** All I got back was '$PPPD_VERSION'])
-- AC_MSG_WARN([*** I will keep going, but it may not work.])
-- ;;
--esac
--
- dnl Figure out packing order of structures
--AC_MSG_CHECKING([packing order of bit fields])
-+AC_CACHE_CHECK([packing order of bit fields],rpppoe_cv_pack_bitfields,[
- AC_TRY_RUN([
- union foo {
- struct bar {
-@@ -245,10 +209,11 @@
- }
- }], rpppoe_cv_pack_bitfields=normal, rpppoe_cv_pack_bitfields=rev,
- $ECHO "no defaults for cross-compiling"; exit 0)
-+])
-
- if test "$rpppoe_cv_pack_bitfields" = "rev" ; then
- AC_MSG_RESULT(reversed)
-- AC_DEFINE(PACK_BITFIELDS_REVERSED)
-+ AC_DEFINE([PACK_BITFIELDS_REVERSED], [], [Reversed bitfields])
- else
- AC_MSG_RESULT(normal)
- fi
-@@ -312,6 +277,7 @@
- AC_SUBST(RDYNAMIC)
- AC_SUBST(LIBEVENT)
- AC_SUBST(ECHO)
-+AC_SUBST(HAVE_STRUCT_SOCKADDR_LL)
-
- datadir_evaluated=`eval echo $datadir`
- AC_SUBST(datadir_evaluated)