blob: f64da4fa2fcf0a4c1d34afd18ed0ecda1bb0c7e5 [file] [log] [blame]
Brad Bishop316dfdd2018-06-25 12:45:53 -04001From 0b62f71eb5d44d4a57103566ba58022b6304fa4f Mon Sep 17 00:00:00 2001
2From: Tom Rini <tom_rini@mentor.com>
3Date: Wed, 27 Jul 2011 03:46:52 +0000
4Subject: [PATCH] rp-pppoe: Port from oe.dev
5
Patrick Williamsb48b7b42016-08-17 15:04:38 -05006The autoconf stuff is all in a subdirectory, which is rather annoying
7as OE expects patches to be applied and autoconf stuff to be done in
8S. This adds enough autoconf at the top level to allow it to be
9called there - all it does is run a sub autoconf stuff in the src
10directory.
11
12Upstream-Status: Inappropriate [build system specific change]
13
Brad Bishop316dfdd2018-06-25 12:45:53 -040014---
15 Makefile.am | 5 +++++
16 configure.in | 4 ++++
17 2 files changed, 9 insertions(+)
18 create mode 100644 Makefile.am
19 create mode 100644 configure.in
20
21diff --git a/Makefile.am b/Makefile.am
22new file mode 100644
23index 0000000..eff6977
24--- /dev/null
25+++ b/Makefile.am
Patrick Williamsb48b7b42016-08-17 15:04:38 -050026@@ -0,0 +1,5 @@
27+PACKAGE = rp-pppoe
28+VERSION = 3.8
29+
30+dnl AM_CFLAGS = -Wall -DDEBUG
31+SUBDIRS = src
Brad Bishop316dfdd2018-06-25 12:45:53 -040032diff --git a/configure.in b/configure.in
33new file mode 100644
34index 0000000..ac1a7e4
35--- /dev/null
36+++ b/configure.in
Patrick Williamsb48b7b42016-08-17 15:04:38 -050037@@ -0,0 +1,4 @@
38+AC_INIT(src/pppoe.c)
39+AM_INIT_AUTOMAKE([rp-pppoe], [3.8])
40+AC_CONFIG_SUBDIRS(src)
41+AC_OUTPUT(Makefile)