Windowmaker build error, freebsd 9.1 inotify_init

2013-02-13 Thread sean
Hello All,

I am seeing this exact windowmaker build error, 
http://www.freebsd.org/cgi/query-pr.cgi?pr=174105cat= , on my freshly 
installed system appear when I try to build Windowmaker on my 9.1-RELEASE 
Freebsd and64 system running a generic kernel.

How exactly do I properly format the fix stated in the closed 174105 bug report 
to the Windowmaker Makefile?


Fix
Adding -linotify to LD_FLAGS in the Makefile fixes the problem.


Thanks in advance,
Sean

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Windowmaker build error, freebsd 9.1 inotify_init

2013-02-13 Thread Polytropon
On Wed, 13 Feb 2013 21:17:10 -0500, sean wrote:
 How exactly do I properly format the fix stated in the closed
 174105 bug report to the Windowmaker Makefile?
 
 
 Fix
 Adding -linotify to LD_FLAGS in the Makefile fixes the problem.
 

Just add the text -linotify to the LD_FLAGS variable defined
in the Makefile. It's /usr/ports/x11-wm/windowmaker/Makefile
in line 40. However, the name of the variable is LDFLAGS (no
underscore). I have v 1.171 of this file here, port version is
0.95.2 rev. 4 -- just for reference.

Original line:

LDFLAGS+=   -L${LOCALBASE}/lib

To be changed into:

LDFLAGS+=   -L${LOCALBASE}/lib -linotify

Then try to build WindowMaker again.


-- 
Polytropon
Magdeburg, Germany
Happy FreeBSD user since 4.0
Andra moi ennepe, Mousa, ...
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Windowmaker build error, freebsd 9.1 inotify_init

2013-02-13 Thread sean

On Feb 13, 2013, at 9:25 PM, Polytropon free...@edvax.de wrote:

 On Wed, 13 Feb 2013 21:17:10 -0500, sean wrote:
 How exactly do I properly format the fix stated in the closed
 174105 bug report to the Windowmaker Makefile?
 
 
 Fix
 Adding -linotify to LD_FLAGS in the Makefile fixes the problem.
 
 
 Just add the text -linotify to the LD_FLAGS variable defined
 in the Makefile. It's /usr/ports/x11-wm/windowmaker/Makefile
 in line 40. However, the name of the variable is LDFLAGS (no
 underscore). I have v 1.171 of this file here, port version is
 0.95.2 rev. 4 -- just for reference.
 
 Original line:
 
   LDFLAGS+=   -L${LOCALBASE}/lib
 
 To be changed into:
 
   LDFLAGS+=   -L${LOCALBASE}/lib -linotify
 
 Then try to build WindowMaker again.
 
 
 -- 

That did the trick, thanks.
I wonder why the bug was closed as unable to be reproduced.


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org