From 993ffbac4aa266d83602f736a51450345ef92314 Mon Sep 17 00:00:00 2001 From: "H. Peter Anvin" Date: Tue, 5 Apr 2011 14:07:06 -0700 Subject: core/head.inc: require NASM 2.03+ We have needed NASM 2.03+ for a long time. Signed-off-by: H. Peter Anvin --- core/head.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'core/head.inc') diff --git a/core/head.inc b/core/head.inc index 18ce132c..71eb5744 100644 --- a/core/head.inc +++ b/core/head.inc @@ -20,8 +20,8 @@ %ifndef _HEAD_INC %define _HEAD_INC -%if __NASM_MAJOR__ < 2 - %error "NASM 2.00 or later required to compile correctly" +%if __NASM_MAJOR__ < 2 || (__NASM_MAJOR__ == 2 && __NASM_MINOR__ < 3) + %error "NASM 2.03 or later required to compile correctly" %endif %include "macros.inc" -- cgit v1.2.1