if v:version >= 704
    " Do something if Vim is the right version.
endif
if has('patch666')
    " Do something if Vim has the right patch-level.
endif
if has('feature')
    " Do something if Vim is built with 'feature'.
endif
See :help has-patch and :help feature-list.