summaryrefslogtreecommitdiff
path: root/core/head.inc
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@linux.intel.com>2011-04-05 14:07:06 -0700
committerH. Peter Anvin <hpa@linux.intel.com>2011-04-05 14:07:06 -0700
commit993ffbac4aa266d83602f736a51450345ef92314 (patch)
tree9c054e99a6a485aa309d9b5d8f9e4ac337786546 /core/head.inc
parente0ef82433f1e67ca6de2492177900f104a3bc6c8 (diff)
downloadsyslinux-993ffbac4aa266d83602f736a51450345ef92314.tar.gz
core/head.inc: require NASM 2.03+
We have needed NASM 2.03+ for a long time. Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
Diffstat (limited to 'core/head.inc')
-rw-r--r--core/head.inc4
1 files changed, 2 insertions, 2 deletions
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"