uhttpd: fix parameter parsing issue on avr32 and most likely ixp4xx
SVN-Revision: 20532
This commit is contained in:
parent
8779e971ed
commit
4bc74807e4
2 changed files with 3 additions and 2 deletions
|
@ -8,7 +8,7 @@
|
|||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=uhttpd
|
||||
PKG_RELEASE:=4
|
||||
PKG_RELEASE:=5
|
||||
|
||||
PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
|
||||
|
||||
|
@ -56,6 +56,7 @@ endef
|
|||
|
||||
# hack to use CyASSL headers
|
||||
TARGET_CFLAGS += -I$(firstword $(wildcard $(BUILD_DIR)/cyassl-*/include))
|
||||
TARGET_LDFLAGS += -lm
|
||||
MAKE_VARS += FPIC="$(FPIC)"
|
||||
|
||||
define Build/Prepare
|
||||
|
|
|
@ -422,7 +422,7 @@ int main (int argc, char **argv)
|
|||
int nofork = 0;
|
||||
|
||||
/* args */
|
||||
char opt;
|
||||
int opt;
|
||||
char bind[128];
|
||||
char *port = NULL;
|
||||
|
||||
|
|
Loading…
Reference in a new issue