Skip to content
Snippets Groups Projects
Commit dcdf71c2 authored by ntfreak's avatar ntfreak
Browse files

- fix signed/unsigned build errors under win32. Thanks Zach Welch <zw@superlucidity.net>

git-svn-id: svn://svn.berlios.de/openocd/trunk@1489 b42882b7-edfa-0310-969c-e2dbd0fdcd60
parent 9997362a
No related branches found
No related tags found
No related merge requests found
...@@ -18,6 +18,11 @@ if IOUTIL ...@@ -18,6 +18,11 @@ if IOUTIL
libhelper_a_SOURCES += ioutil.c libhelper_a_SOURCES += ioutil.c
endif endif
libhelper_a_CFLAGS =
if IS_MINGW
# FD_* macros are sloppy with their signs on MinGW32 platform
libhelper_a_CFLAGS += -Wno-sign-compare
endif
noinst_HEADERS = binarybuffer.h configuration.h types.h log.h command.h \ noinst_HEADERS = binarybuffer.h configuration.h types.h log.h command.h \
time_support.h replacements.h fileio.h jim.h jim-eventloop.h \ time_support.h replacements.h fileio.h jim.h jim-eventloop.h \
......
...@@ -8,6 +8,11 @@ if HTTPD ...@@ -8,6 +8,11 @@ if HTTPD
libserver_a_SOURCES += httpd.c libserver_a_SOURCES += httpd.c
endif endif
libserver_a_CFLAGS =
if IS_MINGW
# FD_* macros are sloppy with their signs on MinGW32 platform
libserver_a_CFLAGS += -Wno-sign-compare
endif
# tcl server addons # tcl server addons
noinst_HEADERS += tcl_server.h noinst_HEADERS += tcl_server.h
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment