Bug 114907 - net-mgmt/zabbix makefile has incorrect argument for building with sqlite
Summary: net-mgmt/zabbix makefile has incorrect argument for building with sqlite
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-ports-bugs (Nobody)
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2007-07-25 19:00 UTC by Ian
Modified: 2007-07-26 10:40 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 Ian 2007-07-25 19:00:05 UTC
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.
Comment 1 dfilter service freebsd_committer freebsd_triage 2007-07-26 10:39:02 UTC
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"
Comment 2 sat freebsd_committer freebsd_triage 2007-07-26 10:39:09 UTC
State Changed
From-To: open->closed

Committed, thanks!