1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-02 04:41:35 +00:00

Define _SVID_SOURCE to get tempnam().

This commit is contained in:
Oliver Schmidt 2014-02-09 01:19:40 +01:00
parent bec75d9e62
commit 47828e1059

View File

@ -25,7 +25,7 @@ LD65_LIB = $(datadir)/lib
LD65_OBJ = $(datadir)/lib
LD65_CFG = $(datadir)/cfg
CFLAGS += -MMD -MP -O -std=c89 -I common \
CFLAGS += -MMD -MP -O -std=c89 -D_SVID_SOURCE -I common \
-Wall -Wextra -Wno-char-subscripts -Werror $(USER_CFLAGS) \
-DCA65_INC=$(CA65_INC) -DCC65_INC=$(CC65_INC) \
-DLD65_LIB=$(LD65_LIB) -DLD65_OBJ=$(LD65_OBJ) -DLD65_CFG=$(LD65_CFG)