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:16:24 +0100
commit3b1f317706fcd82fd136deee2c523ad37c344308 (patch)
treefd3c9c6787432fa476773f053954510d5c0e879a /libbsd.py
parentZONE(9): Fix UMA_PCPU_ALLOC_SIZE (diff)
downloadrtems-libbsd-3b1f317706fcd82fd136deee2c523ad37c344308.tar.bz2
mghttpd: Remove
The mghttpd is already provided by RTEMS.
Diffstat (limited to '')
-rw-r--r--libbsd.py19
1 files changed, 0 insertions, 19 deletions
diff --git a/libbsd.py b/libbsd.py
index e1600111..55bf5649 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'),
@@ -4775,23 +4774,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):
@@ -5027,7 +5009,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))