mirror of
git://git.psyc.eu/libpsyc
synced 2024-08-15 03:19:02 +00:00
tests do not work with -std=c99 !?
This commit is contained in:
parent
3cc1c8127a
commit
2bf10f154e
1 changed files with 4 additions and 1 deletions
|
@ -1,6 +1,9 @@
|
||||||
OPT = -O2
|
OPT = -O2
|
||||||
DEBUG = 2
|
DEBUG = 2
|
||||||
CFLAGS = -I../include -I../src -Wall -std=c99 ${OPT}
|
|
||||||
|
# compilation fails if -std=c99 is provided!?
|
||||||
|
# (netdb.h refuses to export struct addrinfo)
|
||||||
|
CFLAGS = -I../include -I../src -Wall ${OPT}
|
||||||
LDFLAGS = -L../lib
|
LDFLAGS = -L../lib
|
||||||
LOADLIBES = -lpsyc -lm
|
LOADLIBES = -lpsyc -lm
|
||||||
TARGETS = test_psyc test_psyc_speed test_parser test_match test_render test_text var_routing var_type uniform_parse test_packet_id test_index test_update method
|
TARGETS = test_psyc test_psyc_speed test_parser test_match test_render test_text var_routing var_type uniform_parse test_packet_id test_index test_update method
|
||||||
|
|
Loading…
Reference in a new issue