summaryrefslogtreecommitdiff
path: root/src/libFLAC/ia32/nasm.h
diff options
context:
space:
mode:
authorJosh Coalson <jcoalson@users.sourceforce.net>2001-06-18 22:16:10 +0000
committerJosh Coalson <jcoalson@users.sourceforce.net>2001-06-18 22:16:10 +0000
commit2ac3a5429ceefe9d4d8059fb7d84f7e4bd64c644 (patch)
treed218c0370c2901bcdbe0d54cfff277b185f71282 /src/libFLAC/ia32/nasm.h
parent287fccd661fdf81329345959e87f1cdc44377a78 (diff)
downloadflac-2ac3a5429ceefe9d4d8059fb7d84f7e4bd64c644.tar.gz
change the naming of the object file format define to make it easier to configure properly
Diffstat (limited to 'src/libFLAC/ia32/nasm.h')
-rw-r--r--src/libFLAC/ia32/nasm.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libFLAC/ia32/nasm.h b/src/libFLAC/ia32/nasm.h
index 316955fb..0814826b 100644
--- a/src/libFLAC/ia32/nasm.h
+++ b/src/libFLAC/ia32/nasm.h
@@ -18,17 +18,17 @@
bits 32
-%ifdef WIN32
+%ifdef OBJ_FORMAT_win32
%define FLAC__PUBLIC_NEEDS_UNDERSCORE
%idefine code_section section .text align=16 class=CODE use32
%idefine data_section section .data align=32 class=DATA use32
%idefine bss_section section .bss align=32 class=DATA use32
-%elifdef AOUT
+%elifdef OBJ_FORMAT_aout
%define FLAC__PUBLIC_NEEDS_UNDERSCORE
%idefine code_section section .text
%idefine data_section section .data
%idefine bss_section section .bss
-%elifdef ELF
+%elifdef OBJ_FORMAT_elf
%idefine code_section section .text align=16
%idefine data_section section .data align=32
%idefine bss_section section .bss align=32