← Back to team overview

kicad-developers team mailing list archive

Re: Linux libraries

 

On Thu, Mar 30, 2006 at 07:06:21AM -1000, Mitch Bradley wrote:
>I solved the problem by replacing, in libs.linux:
>
>WXSYSLIB_WITH_GL= `wx-config --libs gl`
>
>with
>
>WXSYSLIB_WITH_GL= `wx-config --libs` `wx-config --libs gl`
>
>Apparently saying "--libs gl" restricts the list of libraries rather 
>than extending it.

Try using the following instead (it's a little cleaner):

WXSYSLIB_WITH_GL= `wx-config --libs std,gl`

Bryan






References