Przeglądaj źródła

Disable compiler warning for when we compare unsinged value < 0

Signed-off-by: Joachim Nilsson <troglobit@gmail.com>
Joachim Nilsson 5 lat temu
rodzic
commit
ae022f1aca
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1
    1
      src/Makefile.am

+ 1
- 1
src/Makefile.am Wyświetl plik

@@ -1,7 +1,7 @@
1 1
 bin_PROGRAMS   = light
2 2
 light_SOURCES  = main.c light.c light.h helpers.c helpers.h
3 3
 light_CPPFLAGS = -I../include -D_XOPEN_SOURCE=500
4
-light_CFLAGS   = -W -Wall -Wextra -std=gnu99
4
+light_CFLAGS   = -W -Wall -Wextra -std=gnu99 -Wno-type-limits
5 5
 
6 6
 install-exec-hook:
7 7
 	chmod 4755 $(DESTDIR)$(bindir)/light