diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2007-12-14 10:07:10 +0200 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2007-12-14 10:07:10 +0200 |
commit | 44b333d4615b5aabc557a0e1b6bb0096da3fae24 (patch) | |
tree | 7f67452afcc0b6b25e6fee32921d52b3d8d80e6e /src | |
parent | Fixed wrong symbol name in crc64_x86.s. (diff) | |
download | xz-44b333d4615b5aabc557a0e1b6bb0096da3fae24.tar.xz |
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.
Diffstat (limited to 'src')
-rw-r--r-- | src/liblzma/check/Makefile.am | 4 | ||||
-rw-r--r-- | src/liblzma/check/crc32_x86.S (renamed from src/liblzma/check/crc32_x86.s) | 0 | ||||
-rw-r--r-- | src/liblzma/check/crc64_x86.S (renamed from src/liblzma/check/crc64_x86.s) | 0 |
3 files changed, 2 insertions, 2 deletions
diff --git a/src/liblzma/check/Makefile.am b/src/liblzma/check/Makefile.am index f00d71a0..e436cb59 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 index f1ae7f76..f1ae7f76 100644 --- a/src/liblzma/check/crc32_x86.s +++ b/src/liblzma/check/crc32_x86.S diff --git a/src/liblzma/check/crc64_x86.s b/src/liblzma/check/crc64_x86.S index 7ad3d889..7ad3d889 100644 --- a/src/liblzma/check/crc64_x86.s +++ b/src/liblzma/check/crc64_x86.S |