From bd45fbd25c0d8f165fa2e74b892019a02d668dde Mon Sep 17 00:00:00 2001 From: Kleis Auke Wolthuizen Date: Wed, 4 Jan 2023 20:05:00 +0100 Subject: [PATCH] Minor GIR fixes (#3261) * Ensure GIR file is aware of `create/` sources It was missing the comments for the `VipsTextWrap` enum. * Avoid new lines in enum members --- libvips/create/create.c | 3 +-- libvips/create/meson.build | 2 ++ 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/libvips/create/create.c b/libvips/create/create.c index 751bb1f4..c99a4bd3 100644 --- a/libvips/create/create.c +++ b/libvips/create/create.c @@ -67,8 +67,7 @@ * VipsTextWrap: * @VIPS_TEXT_WRAP_WORD: wrap at word boundaries * @VIPS_TEXT_WRAP_CHAR: wrap at character boundaries - * @VIPS_TEXT_WRAP_WORD_CHAR: wrap at word boundaries, but fall back to - * character boundaries if there is not enough space for a full word + * @VIPS_TEXT_WRAP_WORD_CHAR: wrap at word boundaries, but fall back to character boundaries if there is not enough space for a full word * @VIPS_TEXT_WRAP_NONE: no wrapping * * Sets the word wrapping style for vips_text() when used with a maximum diff --git a/libvips/create/meson.build b/libvips/create/meson.build index ed79a13c..4e635de4 100644 --- a/libvips/create/meson.build +++ b/libvips/create/meson.build @@ -37,6 +37,8 @@ create_headers = files( 'pmask.h', ) +libvips_sources += create_sources + create_lib = static_library('create', create_sources, create_headers,