Commit 9ae2ad23 authored by Richard Levitte's avatar Richard Levitte
Browse files

Avoid saving any macros starting with a _, since that can create

trouble if header files are included in some "impropper" order.
It's much better if the application programmer has to specify on his
or her own if _REENTRANT shall be defined and when.
parent 4a26329b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -557,7 +557,7 @@ else
	my $def;
	foreach $def (split ' ',$thread_cflag)
		{
		if ($def =~ s/^-D//)
		if ($def =~ s/^-D// && $def !~ /^_/)
			{
			$thread_defines .= "#define $def\n";
			}