kicad-developers team mailing list archive
-
kicad-developers team
-
Mailing list archive
-
Message #00072
Re: Linux libraries
-
To:
kicad-devel@xxxxxxxxxxxxxxx
-
From:
Bryan Stillwell <bryan@...>
-
Date:
Thu, 30 Mar 2006 10:10:56 -0700
-
In-reply-to:
<442C100D.4090002@...>
-
User-agent:
Mutt/1.5.9i
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