1From 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 6The 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 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 21diff --git a/Makefile.am b/Makefile.am 22new file mode 100644 23index 0000000..eff6977 24--- /dev/null 25+++ b/Makefile.am 26@@ -0,0 +1,5 @@ 27+PACKAGE = rp-pppoe 28+VERSION = 3.8 29+ 30+dnl AM_CFLAGS = -Wall -DDEBUG 31+SUBDIRS = src 32diff --git a/configure.in b/configure.in 33new file mode 100644 34index 0000000..ac1a7e4 35--- /dev/null 36+++ b/configure.in 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) 42