|
From: Tom C. <to...@so...> - 2015-12-18 21:03:41
|
Hi Stefano Try this running configure: ./configure CFLAGS"=-I/opt/local/include -I/opt/local/lib/gtk-2.0/include \ -I/opt/local/include/glib-2.0 -I/opt/local/lib/glib-2.0/include" \ PKG_CONFIG_PATH=/opt/local/lib/pkgconfig PKG_CONFIG_PATH is set to the MacPorts package directory. You will need gtk-2.0 and glib-2.0 and usb libraries Running make, you will get a linker error complaining about g_thread_supported. It’s deprecated in the latest gtk+ libraries. Just look for the code below in src/main.c and comment it out as below: /* if (!g_thread_supported ()) g_thread_init (NULL); */ I just built grig on 10.11.2 with current MacPorts. Enjoy. 73, Tom From: Me <iu0dft@ya...> - 2015-12-15 17:58:12 Hi everybody, I get this ./configure error on my mac when I try to install grig 0.8.0 that uses pkg-config; I’m using the latest release (0.29) on Mac OS X 10.11.2 Configure: error: The pkg-config script could not be found or is too old. Make sure itis in your PATH or set the PKG_CONFIG environment variable to the full path to pig-config. Alternatively, you may set the environment variables PACKAGE_CFLAGS and PACKAGE_LIBS to avoid the need to call pig-config. Can you help me fix it somehow? Thanks in advance 73 Stefano IU0DFT |