The zabbix port (/usr/ports/net-mgmt/zabbix/) has an incorrect configure argument specified when using SQLite as its database. Currently, the line is: CONFIGURE_ARGS+=--with-sqlite=${LOCALBASE} However, it is missing the "3" after sqlite, and should appear: CONFIGURE_ARGS+=--with-sqlite3=${LOCALBASE} Fix: Change the configure arguments in the zabbix Makefile for sqlite to: CONFIGURE_ARGS+=--with-sqlite3=${LOCALBASE} How-To-Repeat: Try to build zabbix from ports with a sqlite backend.
sat 2007-07-26 09:38:57 UTC FreeBSD ports repository Modified files: net-mgmt/zabbix Makefile Log: - Fix sqlite-related configure args PR: ports/114907 Submitted by: Ian <yoitsmeremember@gmail.com> Revision Changes Path 1.42 +1 -1 ports/net-mgmt/zabbix/Makefile _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
State Changed From-To: open->closed Committed, thanks!