[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Paparazzi-devel] Paparazzi issue with Xquartz
From: |
Yannick Jestin |
Subject: |
Re: [Paparazzi-devel] Paparazzi issue with Xquartz |
Date: |
Wed, 21 Oct 2015 19:05:07 +0200 |
> On 21 oct. 2015, at 09:12, Tom <address@hidden> wrote:
>
> Hi,Yannick,
> Thank you for your help.I checked the packages which installed with
> home-brew. They don't include gtk2,but they have the package "gtk+".And the
> Xquartz still can't work for the paparazzi.Thank you!
> And here is the packages installed with home-brew:
gtk+ in homebrew is the name of the package for gtk2
with macports:
eriador:~ yann$ otool -l /opt/local/bin/gtk-demo | grep name | grep x11
name /opt/local/lib/libgdk-x11-2.0.0.dylib (offset 24)
name /opt/local/lib/libgtk-x11-2.0.0.dylib (offset 24)
This command checks if it’s been compiled against x11 (and not the native Mac
display system, the quartz backend, which is *not* xquarts).
When you launch $ gtk-demo , does it run within Xquartz ? if not, your gtk+
is compiled —without-x11 , you have to $ brew install gtk+ —with-x11
—
Y.