[Bug 258123] editors/libreoffice do not conifgure with CUPS
- In reply to: bugzilla-noreply_a_freebsd.org: "[Bug 258123] editors/libreoffice do not conifgure with CUPS"
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 29 Aug 2021 20:12:35 UTC
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=258123 --- Comment #3 from gja822@narod.ru --- (In reply to Dima Panov from comment #2) No, I have nicely installed (and reinstalled) CUPS. It occurs that it is system/ compiler error. Also I've tried ports' llvm-devel: clang version 14.0.0 In this case I get this error during configuration. Take a look at line with CLANG_FULL_VERSION. Somehow it is broken before the actual version string. So, the actual error is not with CUPS, but with compiler version string. -------------------------------------------------------- /* confdefs.h */ #define PACKAGE_NAME "LibreOffice" #define PACKAGE_TARNAME "libreoffice" #define PACKAGE_VERSION "7.2.0.4" #define PACKAGE_STRING "LibreOffice 7.2.0.4" #define PACKAGE_BUGREPORT "" #define PACKAGE_URL "http://documentfoundation.org/" #define LIBO_VERSION_MAJOR 7 #define LIBO_VERSION_MINOR 2 #define LIBO_VERSION_MICRO 0 #define LIBO_VERSION_PATCH 4 #define LIBO_THIS_YEAR 2021 #define SRCDIR "/usr/ports/editors/libreoffice/work/libreoffice-7.2.0.4" #define SRC_ROOT "/usr/ports/editors/libreoffice/work/libreoffice-7.2.0.4" #define BUILDDIR "/usr/ports/editors/libreoffice/work/libreoffice-7.2.0.4" #define ENABLE_HEADLESS 1 #define HAVE_STDIO_H 1 #define HAVE_STDLIB_H 1 #define HAVE_STRING_H 1 #define HAVE_INTTYPES_H 1 #define HAVE_STDINT_H 1 #define HAVE_STRINGS_H 1 #define HAVE_SYS_STAT_H 1 #define HAVE_SYS_TYPES_H 1 #define HAVE_UNISTD_H 1 #define STDC_HEADERS 1 #define HAVE_FEATURE_COMMUNITY_FLAVOR 1 #define HAVE_FEATURE_DESKTOP 1 #define HAVE_FEATURE_MULTIUSER_ENVIRONMENT 1 #define HAVE_FEATURE_AVMEDIA 1 #define HAVE_FEATURE_DBCONNECTIVITY 1 #define HAVE_FEATURE_EXTENSIONS 1 #define HAVE_FEATURE_SCRIPTING 1 #define HAVE_FEATURE_JAVA 1 #define LIBO_BIN_FOLDER "program" #define LIBO_ETC_FOLDER "program" #define LIBO_LIBEXEC_FOLDER "program" #define LIBO_LIB_FOLDER "program" #define LIBO_LIB_PYUNO_FOLDER "program" #define LIBO_SHARE_FOLDER "share" #define LIBO_SHARE_HELP_FOLDER "help" #define LIBO_SHARE_JAVA_FOLDER "program/classes" #define LIBO_SHARE_PRESETS_FOLDER "presets" #define LIBO_SHARE_RESOURCE_FOLDER "program/resource" #define LIBO_SHARE_SHELL_FOLDER "program/shell" #define LIBO_URE_BIN_FOLDER "program" #define LIBO_URE_ETC_FOLDER "program" #define LIBO_URE_LIB_FOLDER "program" #define LIBO_URE_MISC_FOLDER "program" #define LIBO_URE_SHARE_JAVA_FOLDER "program/classes" #define CLANG_VERSION 140000 #define CLANG_FULL_VERSION "14.0.0 " #define HAVE_FEATURE_UI 1 #define USING_X11 1 #define WORKDIR "/usr/ports/editors/libreoffice/work/libreoffice-7.2.0.4/workdir" /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ char cupsPrintFiles (); int main (void) { return cupsPrintFiles (); ; return 0; } -------------------------------------------------------- The actual error: conftest.c:53:1: error: expected identifier or '(' "14.0.0 " ^ conftest.c:66:8: warning: implicit declaration of function 'cupsPrintFiles' is invalid in C99 [-Wimplicit-function-declaration] return cupsPrintFiles (); ^ 1 warning and 1 error generated. -------------------------------------------------------- I'm sorry for the trouble. -- You are receiving this mail because: You are the assignee for the bug.