From 6c12bd2094234edc1a129969b89cf45b1da889bd Mon Sep 17 00:00:00 2001 From: Arne Schwabe Date: Thu, 22 Jun 2017 18:33:26 +0200 Subject: Update lzo to 2.10 --- main/lzo/asm/i386/src_nasm/all/asm_all.asm | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) (limited to 'main/lzo/asm/i386/src_nasm/all/asm_all.asm') diff --git a/main/lzo/asm/i386/src_nasm/all/asm_all.asm b/main/lzo/asm/i386/src_nasm/all/asm_all.asm index f453e626..87260c08 100644 --- a/main/lzo/asm/i386/src_nasm/all/asm_all.asm +++ b/main/lzo/asm/i386/src_nasm/all/asm_all.asm @@ -2,7 +2,7 @@ ; ; This file is part of the LZO real-time data compression library. ; -; Copyright (C) 1996-2015 Markus Franz Xaver Johannes Oberhumer +; Copyright (C) 1996-2017 Markus Franz Xaver Johannes Oberhumer ; All Rights Reserved. ; ; The LZO library is free software; you can redistribute it and/or @@ -50,10 +50,18 @@ bits 32 %endif %endif %ifndef NAME1 -%ifidni __OUTPUT_FORMAT__,macho32 +%ifidni __OUTPUT_FORMAT__,elf32 +%define NAME1(a) a +%elifidni __OUTPUT_FORMAT__,elf64 +%define NAME1(a) a +%elifidni __OUTPUT_FORMAT__,macho32 %define NAME1(a) _ %+ a %elifidni __OUTPUT_FORMAT__,macho64 %define NAME1(a) _ %+ a +%elifidni __OUTPUT_FORMAT__,win32 +%define NAME1(a) _ %+ a +%elifidni __OUTPUT_FORMAT__,win64 +%define NAME1(a) a %else %define NAME1(a) _ %+ a %define NAME2(a) a -- cgit v1.2.3