Commit 77852cf5 authored by Jan-E's avatar Jan-E

Use string for NGHTTP2_VERSION_NUM, e.g 0x010800

parent fa36537f
...@@ -21,7 +21,7 @@ VER_MAJOR := $(word 1,$(_VERSION)) ...@@ -21,7 +21,7 @@ VER_MAJOR := $(word 1,$(_VERSION))
VER_MINOR := $(word 2,$(_VERSION)) VER_MINOR := $(word 2,$(_VERSION))
VER_MICRO := $(word 3,$(_VERSION)) VER_MICRO := $(word 3,$(_VERSION))
VERSION := $(VER_MAJOR).$(VER_MINOR).$(VER_MICRO) VERSION := $(VER_MAJOR).$(VER_MINOR).$(VER_MICRO)
VERSION_NUM := ($(VER_MAJOR) << 16) + ($(VER_MINOR) << 8) + $(VER_MICRO) VERSION_NUM := 0x$(shell if [ ${VER_MAJOR} -lt 10 ] ;then echo 0;fi)$(VER_MAJOR)$(shell if [ ${VER_MINOR} -lt 10 ] ;then echo 0;fi)$(VER_MINOR)$(shell if [ ${VER_MICRO} -lt 10 ] ; then echo 0;fi)$(VER_MICRO)
GENERATED := 'Generated by $(realpath Makefile.MSVC)' GENERATED := 'Generated by $(realpath Makefile.MSVC)'
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment