diff options
author | Jon Smirl <jonsmirl@gmail.com> | 2004-07-09 18:46:51 +0000 |
---|---|---|
committer | Jon Smirl <jonsmirl@gmail.com> | 2004-07-09 18:46:51 +0000 |
commit | 368f3c551befc29051d0061c33f408249c88b1f8 (patch) | |
tree | 38618cf9ee4524384ec19e909d46c51996a86dd9 /configs | |
parent | d53d429ed298c500cf785991e648b2862e130dda (diff) |
Fix mesa-solo config to define _GNU_SOURCE so that program_invocation_short_name
will be correctly defined.
Diffstat (limited to 'configs')
-rw-r--r-- | configs/linux-solo | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configs/linux-solo b/configs/linux-solo index a5feac4c2a0..387f764f374 100644 --- a/configs/linux-solo +++ b/configs/linux-solo @@ -8,7 +8,7 @@ CONFIG_NAME = linux-solo CC = gcc CXX = g++ -CCOMMON = -DDRI_NEW_INTERFACE_ONLY -D_POSIX_SOURCE -D_SVID_SOURCE -D_BSD_SOURCE -D_POSIX_C_SOURCE=199309L +CCOMMON = -DDRI_NEW_INTERFACE_ONLY -D_POSIX_SOURCE -D_SVID_SOURCE -D_BSD_SOURCE -D_POSIX_C_SOURCE=199309L -D_GNU_SOURCE CFLAGS = $(CCOMMON) -Wmissing-prototypes -g -std=c99 -Wundef -fPIC -ffast-math |