meson: Remove unused version_commit (#2808)

This commit is contained in:
Khairul Azhar Kasmiran 2022-07-14 23:09:49 +08:00 committed by GitHub
parent 7ca9baebb0
commit 0603a78871
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 8 deletions

View file

@ -49,9 +49,6 @@ if meson.is_subproject()
endif
endif
# by default, not version commit is used
version_commit = '0'
gittip = ''
fs = import('fs')
@ -63,10 +60,6 @@ if git_exe.found() and fs.exists('.git')
endif
endif
if get_option('rizin_version_commit') != ''
version_commit = get_option('rizin_version_commit')
endif
if get_option('rizin_gittip') != ''
gittip = get_option('rizin_gittip')
endif

View file

@ -17,7 +17,6 @@ option('rizin_hud', type: 'string', value: '', description: 'Install path for hu
option('rizin_plugins', type: 'string', value: '', description: 'Path where plugins are expected to be found')
option('rizin_bindings', type: 'string', value: '', description: 'Path where rizin bindings are expected to be found')
option('rizin_version_commit', type: 'string', value: '')
option('rizin_gittip', type: 'string', value: '')
option('checks_level', type: 'integer', value: 9999, description: 'Value between 0 and 3 to enable different level of assert (see RZ_CHECKS_LEVEL). By default its value depends on buildtype (2 on debug, 1 on release).')
option('use_sys_capstone', type: 'feature', value: 'disabled')