summaryrefslogtreecommitdiffstats
path: root/libbsd.py
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2019-02-12 14:15:39 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2019-02-12 14:21:37 +0100
commit180ff441a34cd026522d77d1200651f3c13614ff (patch)
treec0e30f773dceb404102b86e28a43e7919c1a3260 /libbsd.py
parentZONE(9): Fix UMA_PCPU_ALLOC_SIZE (diff)
downloadrtems-libbsd-180ff441a34cd026522d77d1200651f3c13614ff.tar.bz2
mghttpd: Remove
The mghttpd is already provided by RTEMS.
Diffstat (limited to 'libbsd.py')
-rw-r--r--libbsd.py19
1 files changed, 0 insertions, 19 deletions
diff --git a/libbsd.py b/libbsd.py
index c8172e3a..b784cd63 100644
--- a/libbsd.py
+++ b/libbsd.py
@@ -109,7 +109,6 @@ _defaults = {
# local path wildcard dest path
[('rtemsbsd/include', '**/*.h', ''),
('rtemsbsd/@CPU@/include', '**/*.h', ''),
- ('rtemsbsd/mghttpd', 'mongoose.h', 'mghttpd'),
('freebsd/include', '**/*.h', ''),
('freebsd/sys/bsm', '**/*.h', 'bsm'),
('freebsd/sys/cam', '**/*.h', 'cam'),
@@ -4766,23 +4765,6 @@ class mdnsresponder(builder.Module):
mm.generator['source']()
)
-#
-# Mongoose HTTP
-#
-class mghttpd(builder.Module):
-
- def __init__(self, manager):
- super(mghttpd, self).__init__(manager, type(self).__name__)
-
- def generate(self):
- mm = self.manager
- self.addSourceFiles(
- [
- 'rtemsbsd/mghttpd/mongoose.c',
- ],
- mm.generator['source']('-DNO_SSL -DNO_POPEN -DNO_CGI -DUSE_WEBSOCKET')
- )
-
class dpaa(builder.Module):
def __init__(self, manager):
@@ -5018,7 +5000,6 @@ def load(mm):
mm.addModule(crypto_openssl(mm))
mm.addModule(dhcpcd(mm))
- mm.addModule(mghttpd(mm))
mm.addModule(mdnsresponder(mm))
mm.addModule(tests(mm))