Hey Riccardo, hey Bertrand, Am 18.10.19 um 14:23 schrieb Riccardo Mottola: > if there is a place where the options are not passwd down in > GWorkspace please let me know. > Some time ago, I reviewed all make and configure files so that it > happens, but maybe I missed some.
as I now figured out GWorkspace will work when you modify GNUmakefile.in of PDFKit the following way: Set libfreetype: LIB_FREETYPE_LDFLAGS := $(shell pkg-config --libs freetype2) LIB_FREETYPE_CFLAGS := $(shell pkg-config --cflags freetype2) And with clang make use ld.gold and link against libobjc: ifeq ($(findstring clang, $(LD)), clang) ADDITIONAL_LDFLAGS += -lstdc++ -lobjc -fuse-ld=/usr/bin/ld.gold endif Change it, reconfigure, build, install and GWorkspace should run. Even though GWorkspace starts I thought it would use PDFKit to generate previews of PDF files within the file viewer. But maybe I was mislead there? :) Johannes _______________________________________________ Discuss-gnustep mailing list [email protected] https://lists.gnu.org/mailman/listinfo/discuss-gnustep
