Skip to content
Snippets Groups Projects
Commit edc1a1b3 authored by sof's avatar sof
Browse files

[project @ 1997-10-30 22:12:25 by sof]

When needed , define __linux__ to silence cpp warnings
parent 4c37d079
No related merge requests found
......@@ -32,6 +32,9 @@ $HostPlatform = ${HOSTPLATFORM};
if ( $HostPlatform =~ /^i386-/ ) {
push(@Defines, '-D__i386__');
}
if ( $HostPlatform =~ /linux/ ) {
push(@Defines, '-D__linux__');
}
if ( $HostPlatform =~ /^sparc-/ ) {
push(@Defines, '-D__sparc__');
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment