Bug 176037 - [patch] editors/libreoffice: Fix build without kerberos
Summary: [patch] editors/libreoffice: Fix build without kerberos
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: FreeBSD Office Team
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-02-11 21:50 UTC by freebsd
Modified: 2013-02-12 01:00 UTC (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description freebsd 2013-02-11 21:50:00 UTC
In version 3.6.5, editors/libreoffice fails to configure if the world is built WITHOUT_KERBEROS=1. Adding the following two lines to CONFIGURE_ARGS fixes the issue:

--without-gssapi
--without-krb5
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2013-02-11 21:50:19 UTC
Responsible Changed
From-To: freebsd-ports-bugs->office

Over to maintainer (via the GNATS Auto Assign Tool)
Comment 2 Jung-uk Kim freebsd_committer freebsd_triage 2013-02-12 00:58:11 UTC
State Changed
From-To: open->closed

Committed, thanks!  Please note GSSAPI and Kerberos are necessary 
when PostgreSQL-SDBC is enabled, however.
Comment 3 dfilter service freebsd_committer freebsd_triage 2013-02-12 00:58:39 UTC
Author: jkim
Date: Tue Feb 12 00:57:47 2013
New Revision: 312085
URL: http://svnweb.freebsd.org/changeset/ports/312085

Log:
  Disable Kerberos and GSSAPI when PostgreSQL-SDBC is disabled.
  
  PR:	ports/176037

Modified:
  head/editors/libreoffice/Makefile

Modified: head/editors/libreoffice/Makefile
==============================================================================
--- head/editors/libreoffice/Makefile	Mon Feb 11 23:53:16 2013	(r312084)
+++ head/editors/libreoffice/Makefile	Tue Feb 12 00:57:47 2013	(r312085)
@@ -220,7 +220,8 @@ USE_PGSQL=	yes
 WANT_PGSQL_VER=	90+
 CONFIGURE_ARGS+=	--enable-postgresql-sdbc --with-system-postgresql
 .else
-CONFIGURE_ARGS+=	--disable-postgresql-sdbc
+CONFIGURE_ARGS+=	--disable-postgresql-sdbc \
+			--without-gssapi --without-krb5
 .endif
 
 .if ${PORT_OPTIONS:MSYSTRAY}
_______________________________________________
svn-ports-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-ports-all
To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"