This is the mail archive of the gcc@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: quad_t



# Is anyone aware of a magic symbol I can toss GCC that
# will prevent it from arriving at __USE_BSD (I assume this is actually
# a glibc issue...)? -U__USE_BSD, -U_BSD_SOURCE, etc., don't do anything
# useful since they don't *prevent* the defining of a preprocessor
# value.

Have a read through <includes>/features.h. It maps things like _BSD_SOURCE
to __USE_BSD, and so on. It should give you enough information for you to
figure out what doesn't switch __USE_BSD on.

Alternatively, you could spend ten minutes with sed :-)

Hope this helps.

-- 
Mo McKinlay                                T: +44 (0) 709 22 55 05  x1
Chief Software Architect                   F: +44 (0) 709 22 55 05  x3
inter/open                                 E: mmckinlay@labs.interopen.org
A division of Bekon Marketing Limited      W: http://www.interopen.org


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]