Changeset 4f75a78 in rtems-libbsd


Ignore:
Timestamp:
04/07/15 13:31:27 (9 years ago)
Author:
Sebastian Huber <sebastian.huber@…>
Branches:
4.11, 5, 5-freebsd-12, 6-freebsd-12, freebsd-9.3, master
Children:
8b722db
Parents:
0c395c0
git-author:
Sebastian Huber <sebastian.huber@…> (04/07/15 13:31:27)
git-committer:
Sebastian Huber <sebastian.huber@…> (04/08/15 05:58:38)
Message:

mghttpd: Import from RTEMS

Files:
2 added
2 edited

Legend:

Unmodified
Added
Removed
  • Makefile

    r0c395c0 r4f75a78  
    15191519        $(CC) $(CPPFLAGS) $(CFLAGS) -D__FreeBSD__ -DTHERE_IS_NO_FORK -DMASTER_ONLY -DINET -DINET6 -c $< -o $@
    15201520LIB_C_FILES += rtemsbsd/rtems/rtems-bsd-shell-dhcpcd.c
     1521LIB_C_FILES += rtemsbsd/mghttpd/mongoose.c
     1522rtemsbsd/mghttpd/mongoose.o: rtemsbsd/mghttpd/mongoose.c
     1523        $(CC) $(CPPFLAGS) $(CFLAGS) -DNO_SSL -DNO_POPEN -DNO_CGI -DUSE_WEBSOCKET -c $< -o $@
    15211524LIB_C_FILES += mDNSResponder/mDNSCore/anonymous.c
    15221525LIB_C_FILES += mDNSResponder/mDNSCore/CryptoAlg.c
  • freebsd-to-rtems.py

    r0c395c0 r4f75a78  
    25962596)
    25972597
     2598mghttpd = Module('mghttpd')
     2599mghttpd.addSourceFiles(
     2600        [
     2601                'rtemsbsd/mghttpd/mongoose.c',
     2602        ],
     2603        '-DNO_SSL -DNO_POPEN -DNO_CGI -DUSE_WEBSOCKET'
     2604)
     2605
    25982606# Register all the Module instances with the Module Manager
    25992607mm.addModule(rtems)
     
    26402648mm.addModule(tests)
    26412649mm.addModule(dhcpcd)
     2650mm.addModule(mghttpd)
    26422651mm.addModule(mdnsresponder)
    26432652
Note: See TracChangeset for help on using the changeset viewer.