Changeset d7b7f5e in mainline


Ignore:
Timestamp:
2013-09-14T15:41:36Z (11 years ago)
Author:
Martin Sucha <sucha14@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
1c0cef0
Parents:
41e871f
Message:

Add a basic HTTP download tool

Files:
9 added
4 edited

Legend:

Unmodified
Added
Removed
  • .bzrignore

    r41e871f rd7b7f5e  
    273273uspace/app/df/df
    274274uspace/dist/app/df
     275uspace/app/download/download
     276uspace/dist/app/download
  • boot/Makefile.common

    r41e871f rd7b7f5e  
    174174        $(USPACE_PATH)/app/dnscfg/dnscfg \
    175175        $(USPACE_PATH)/app/dnsres/dnsres \
     176        $(USPACE_PATH)/app/download/download \
    176177        $(USPACE_PATH)/app/edit/edit \
    177178        $(USPACE_PATH)/app/inet/inet \
  • uspace/Makefile

    r41e871f rd7b7f5e  
    4242        app/dnscfg \
    4343        app/dnsres \
     44        app/download \
    4445        app/edit \
    4546        app/getterm \
     
    234235        lib/gui \
    235236        lib/hound \
     237        lib/http \
    236238        lib/softrend \
    237239        lib/draw \
     
    239241        lib/nic \
    240242        lib/ext4 \
     243        lib/uri \
    241244        lib/usb \
    242245        lib/usbhost \
  • uspace/Makefile.common

    r41e871f rd7b7f5e  
    141141LIBBITHENGE_PREFIX = $(LIB_PREFIX)/bithenge
    142142
     143LIBHTTP_PREFIX = $(LIB_PREFIX)/http
     144LIBURI_PREFIX = $(LIB_PREFIX)/uri
     145
    143146ifeq ($(STATIC_NEEDED),y)
    144147        STATIC_BUILD = y
Note: See TracChangeset for help on using the changeset viewer.