msvcmaker: Remove the defining of __ASM_SHORT and __ASM_STRING in the generated config.h file.
These defines aren't needed. Move the X_DISPLAY_MISSING and __ASM_* defines to after the PACKAGE_* defines to match config.h.in.
This commit is contained in:
parent
efe81dd8ed
commit
1ab076626d
|
@ -1157,25 +1157,6 @@ sub _generate_config_h($) {
|
|||
print OUT "\n";
|
||||
}
|
||||
|
||||
print OUT "#define X_DISPLAY_MISSING 1\n";
|
||||
print OUT "\n";
|
||||
|
||||
print OUT "/* Define to a macro to generate an assembly function directive */\n";
|
||||
print OUT "#define __ASM_FUNC(name) \"\"\n";
|
||||
print OUT "\n";
|
||||
|
||||
print OUT "/* Define to a macro to generate an assembly name from a C symbol */\n";
|
||||
print OUT "#define __ASM_NAME(name) name\n";
|
||||
print OUT "\n";
|
||||
|
||||
print OUT "/* Define to the assembler keyword used to specify a word value */\n";
|
||||
print OUT "#define __ASM_SHORT \".short\"\n";
|
||||
print OUT "\n";
|
||||
|
||||
print OUT "/* Define to the assembler keyword used to specify an ASCII string */\n";
|
||||
print OUT "#define __ASM_STRING \".string\"\n";
|
||||
print OUT "\n";
|
||||
|
||||
print OUT "/* Define to the address where bug reports for this package should be sent. */\n";
|
||||
print OUT "#define PACKAGE_BUGREPORT \"\"\n";
|
||||
print OUT "\n";
|
||||
|
@ -1196,5 +1177,16 @@ sub _generate_config_h($) {
|
|||
print OUT "#define PACKAGE_VERSION \"YYYYMMDD\"\n";
|
||||
print OUT "\n";
|
||||
|
||||
print OUT "#define X_DISPLAY_MISSING 1\n";
|
||||
print OUT "\n";
|
||||
|
||||
print OUT "/* Define to a macro to generate an assembly function directive */\n";
|
||||
print OUT "#define __ASM_FUNC(name) \"\"\n";
|
||||
print OUT "\n";
|
||||
|
||||
print OUT "/* Define to a macro to generate an assembly name from a C symbol */\n";
|
||||
print OUT "#define __ASM_NAME(name) name\n";
|
||||
print OUT "\n";
|
||||
|
||||
close(OUT);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue