Package Details: modest 0.0.6.d021b90-5

Git Clone URL: https://aur.archlinux.org/modest.git (read-only, click to copy)
Package Base: modest
Description: Fast HTML renderer implemented as a pure C99 library with no outside dependencies
Upstream URL: https://github.com/lexborisov/modest
Licenses: LGPL2.1
Provides: mycore, mycss, myencoding, myfont, myhtml, myunicode, myurl
Submitter: arojas
Maintainer: andreas_baumann
Last Packager: andreas_baumann
Votes: 1
Popularity: 0.000074
First Submitted: 2025-03-31 17:42 (UTC)
Last Updated: 2026-07-09 05:46 (UTC)

Latest Comments

andreas_baumann commented on 2026-07-09 05:39 (UTC)

thanks for catching that. I went for a -Wno-error patch in Makefile.cfg. MODEST_CFLAGS must be overriden, because -Werror is there, changing that gives errors either with -fPIC or with finding include files when building in a chroot. Overriding CFLAGS appends -Werror at the very end again.

I personally think -Werror is for the developer, not for the packager, it should never be used when building packages.

edudobay commented on 2026-07-08 15:51 (UTC)

Had to add a GCC flag to complete the build successfully:

-   make CFLAGS="$CFLAGS -Wno-variadic-macros -ffat-lto-objects" prefix="/usr"
+   make CFLAGS="$CFLAGS -Wno-variadic-macros -ffat-lto-objects -Wno-error=unused-but-set-variable" prefix="/usr"