Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1 | From 0b62f71eb5d44d4a57103566ba58022b6304fa4f Mon Sep 17 00:00:00 2001 |
| 2 | From: Tom Rini <tom_rini@mentor.com> |
| 3 | Date: Wed, 27 Jul 2011 03:46:52 +0000 |
| 4 | Subject: [PATCH] rp-pppoe: Port from oe.dev |
| 5 | |
Patrick Williams | b48b7b4 | 2016-08-17 15:04:38 -0500 | [diff] [blame] | 6 | The autoconf stuff is all in a subdirectory, which is rather annoying |
| 7 | as OE expects patches to be applied and autoconf stuff to be done in |
| 8 | S. This adds enough autoconf at the top level to allow it to be |
| 9 | called there - all it does is run a sub autoconf stuff in the src |
| 10 | directory. |
| 11 | |
| 12 | Upstream-Status: Inappropriate [build system specific change] |
| 13 | |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 14 | --- |
| 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 | |
| 21 | diff --git a/Makefile.am b/Makefile.am |
| 22 | new file mode 100644 |
| 23 | index 0000000..eff6977 |
| 24 | --- /dev/null |
| 25 | +++ b/Makefile.am |
Patrick Williams | b48b7b4 | 2016-08-17 15:04:38 -0500 | [diff] [blame] | 26 | @@ -0,0 +1,5 @@ |
| 27 | +PACKAGE = rp-pppoe |
| 28 | +VERSION = 3.8 |
| 29 | + |
| 30 | +dnl AM_CFLAGS = -Wall -DDEBUG |
| 31 | +SUBDIRS = src |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 32 | diff --git a/configure.in b/configure.in |
| 33 | new file mode 100644 |
| 34 | index 0000000..ac1a7e4 |
| 35 | --- /dev/null |
| 36 | +++ b/configure.in |
Patrick Williams | b48b7b4 | 2016-08-17 15:04:38 -0500 | [diff] [blame] | 37 | @@ -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) |