From: Lasse Collin Date: Fri, 14 Dec 2007 08:07:10 +0000 (+0200) Subject: Use the filename suffix .S instead of .s for assembler files X-Git-Tag: upstream/5.1.3~889 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=44b333d4615b5aabc557a0e1b6bb0096da3fae24;p=platform%2Fupstream%2Fxz.git Use the filename suffix .S instead of .s for assembler files so that the preprocessor removes the /* */ style comments, which are not supported by some non-GNU assemblers (Solaris) that otherwise work with this code. --- diff --git a/src/liblzma/check/Makefile.am b/src/liblzma/check/Makefile.am index f00d71a..e436cb5 100644 --- a/src/liblzma/check/Makefile.am +++ b/src/liblzma/check/Makefile.am @@ -23,7 +23,7 @@ libcheck_la_CPPFLAGS = \ if COND_CHECK_CRC32 if COND_ASM_X86 -libcheck_la_SOURCES += crc32_x86.s +libcheck_la_SOURCES += crc32_x86.S else libcheck_la_SOURCES += crc32.c endif @@ -40,7 +40,7 @@ endif if COND_CHECK_CRC64 if COND_ASM_X86 -libcheck_la_SOURCES += crc64_x86.s +libcheck_la_SOURCES += crc64_x86.S else libcheck_la_SOURCES += crc64.c endif diff --git a/src/liblzma/check/crc32_x86.s b/src/liblzma/check/crc32_x86.S similarity index 100% rename from src/liblzma/check/crc32_x86.s rename to src/liblzma/check/crc32_x86.S diff --git a/src/liblzma/check/crc64_x86.s b/src/liblzma/check/crc64_x86.S similarity index 100% rename from src/liblzma/check/crc64_x86.s rename to src/liblzma/check/crc64_x86.S