libgimp: fix typo and libgimpui build.
Apart from some obvious typo, libgimpui link was failing with meson
because it now relies on a function from libgimpconfig (i.e.
gimp_config_reset()), since commit bfb7f43dbc. This fixes:
> /usr/bin/ld: libgimp/gimpproceduredialog.c:223: undefined reference to `gimp_config_reset'
This commit is contained in:
parent
9ac117b143
commit
396d227436
1 changed files with 2 additions and 1 deletions
|
|
@ -257,7 +257,7 @@ libgimpui_headers_introspectable = [
|
|||
'gimppaletteselectbutton.h',
|
||||
'gimppatternselectbutton.h',
|
||||
'gimpprocbrowserdialog.h',
|
||||
'gimpproeduredialog.h',
|
||||
'gimpproceduredialog.h',
|
||||
'gimpprocview.h',
|
||||
'gimpprogressbar.h',
|
||||
'gimpselectbutton.h',
|
||||
|
|
@ -306,6 +306,7 @@ libgimpui = library('gimpui-'+ gimp_api_version,
|
|||
libgimp,
|
||||
libgimpbase,
|
||||
libgimpcolor,
|
||||
libgimpconfig,
|
||||
libgimpmodule,
|
||||
libgimpwidgets,
|
||||
],
|
||||
|
|
|
|||
Loading…
Reference in a new issue