Bug 111538 - Pound: logs always to syslog
Summary: Pound: logs always to syslog
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: Anders Nordby
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2007-04-13 16:20 UTC by stefan.witzel
Modified: 2007-06-14 22:50 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 stefan.witzel 2007-04-13 16:20:03 UTC
Even when configuring pound to no log to syslog

make WITHOUT_LOG=yes

the logs are written to syslog.

Fix: 

In the Makefile of the port replace

.if defined(WITHOUT_LOG)
CONFIGURE_ARGS+=        --without-log
.endif

by

.if defined(WITHOUT_LOG)
CONFIGURE_ARGS+=        --disable-log
.endif
How-To-Repeat: see above
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2007-04-13 23:47:52 UTC
Responsible Changed
From-To: freebsd-ports-bugs->anders

Over to maintainer
Comment 2 dfilter service freebsd_committer freebsd_triage 2007-06-14 22:44:01 UTC
anders      2007-06-14 21:43:55 UTC

  FreeBSD ports repository

  Modified files:
    www/pound            Makefile 
  Log:
  Make disabling syslog support actually work.
  
  PR:             ports/111538
  Submitted by:   Stefan Witzel<stefan.witzel@zvw.uni-goettingen.de>
  
  Revision  Changes    Path
  1.14      +1 -1      ports/www/pound/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 3 Anders Nordby freebsd_committer freebsd_triage 2007-06-14 22:44:06 UTC
State Changed
From-To: open->closed

Committed, thanks!