diff options
| author | Michael Biebl <biebl@debian.org> | 2018-07-25 13:12:18 +0200 |
|---|---|---|
| committer | Michael Biebl <biebl@debian.org> | 2018-07-25 13:12:18 +0200 |
| commit | caf1db9d6fbc056cc6c76a24574890f6c7895f3d (patch) | |
| tree | c323cf856ee0bb8e44590670dd54c19653a55748 /meson.build | |
| parent | 429393567647935d9123e21fd27a7529d50255eb (diff) | |
New upstream version 1.12.2 upstream/1.12.2
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') |