diff options
Diffstat (limited to 'meson.build')
| -rw-r--r-- | meson.build | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/meson.build b/meson.build index 6877f15f..0fb21e2b 100644 --- a/meson.build +++ b/meson.build @@ -4,7 +4,7 @@ project( # - add corresponding NM_VERSION_x_y_z macros in # "shared/nm-version-macros.h.in" # - update number in configure.ac - version: '1.12.0', + version: '1.12.2', license: 'GPL2+', default_options: [ 'buildtype=debugoptimized', @@ -501,6 +501,8 @@ if enable_ppp pppd = find_program(locations, required: false) assert(pppd.found(), 'pppd required but not found, please provide a valid pppd path or use -Dppp=false to disable it') + config_h.set_quoted('PPPD_PATH', pppd.path()) + pppd_plugin_dir = get_option('pppd_plugin_dir') if pppd_plugin_dir == '' pppd_plugin_dir = join_paths(nm_libdir, 'pppd', '2.4.5') |