Re: Gtk-OSX Frameworks (was: Why are developers...)

2009-11-10 Thread John Ralls


On Nov 10, 2009, at 4:16 AM, Paul Davis wrote:

On Mon, Nov 9, 2009 at 1:10 PM, Jack Skellington dac...@gmail.com  
wrote:



Also if a native Gtk+ OS X framework were available people who are
maintaining Gtk+ apps would have the option to extend their user base
to OS X quite quickly.


All it requires to use it is to build the GTK stack yourself using the
instructions provided (i wish the instructions had not been moved away
from gnome.org, but they are still easy to find). I should put all
in quotes because if you choose to follow bleeding edge GTK then you
will find that maintaining your built version can be quite a lot of
work in the face of breakages and changes in many different parts of
the stack. This is not true (or at least, it is MUCH less true) if you
use a recent release version (there are instructions on how to do that
included in the gtk osx build info).

I do not believe that using a pre-built GTK OS X framework is
desirable for users or developers. Include GTK as part of your app
bundle. Its not hard to do and gives you complete control over which
version of GTK is used by your app. We do this for Ardour (and now
Mixbus) (screenshots at http://ardour.org/ and
http://mixbus.harrisonconsoles.com/). Users download a single app, and
run it. No framework installation or maintainance.


I haven't built and made available updated frameworks because the  
approach Richard used to create the first one (still hanging around on gtk-osx.org 
, as previously noted elsewhere) didn't produce a result that I think  
I can support. I have in mind a modification of ige-mac-bundler which  
I think will provide better results, but other tasks have higher  
priority at the moment.


Some others, including me, have done some work on the gtk-osx- 
frameworks, and the network graph at github shows that my tree (http://github.com/jralls/gtk-osx-framework 
) is current with all of them . Do be aware that there are 3 branches,  
of which master is probably the only one which will get you close  
enough to use.


I also agree with Paul here: The Apple Framework idiom doesn't make  
sense for cross-platform development. It uses special #include syntax  
and special linking. It doesn't play well with pkg-config. Yes, those  
are solvable problems, but why? The regular gnu autotools work very  
well indeed on OSX, and one needs to use it anyway for building on  
Linux. Why deal with another build chain just for the dubious benefit  
of using XCode instead of emacs or vim?


Add to that that it's hard to build a non-trivial application using  
only gtk+. You're going to need a bunch of other libraries, either  
from gnome, gnu, or freedesktop. They're not going to be in  
Frameworks, so you're going to have to integrate them the autotools  
way, so what do you gain from having gtk+ in a set of frameworks?


There is one exception to which I'm quite sympathetic: PyGtk. At  
present building a downloadable PyGtk app bundle is a royal pain, and  
a PyGtk framework *might* be part of the solution.


Regards,
John Ralls

___
gtk-devel-list mailing list
gtk-devel-list@gnome.org
http://mail.gnome.org/mailman/listinfo/gtk-devel-list


RE: Gtk-OSX Frameworks (was: Why are developers...)

2009-11-10 Thread Shawn Bakhtiar

For building an application... I couldn't agree more, about the framework vs. 
jhbuild and autotools. You definitely want the latter. I like XCode's editor. 
when looking at source code (the colors man the
colors). It also has a lot of nice features such as collapsible
sections, an intuitive way of knowing if you {} are correct, as well as
a jump to function feature that list all functions in the current file
in a drop down menu. However, you can use the editor, and build in shell 
(jhbuild shell). In any case, gdb is a much better debugger to boot.


But yeah.. just try to build mysql with it, or even use it in a build. Good 
luck!!

Also using the ige-mac-bundler, users now simple drag and drop the latest 
package (application) to their application folder, and they are done, 
especially if you adhere to the XDG file system. 

I don't know what all the complaint is about... I have been using the jhbuild 
scripts with little to no problems. I have had a few dependency issues but 
nothing that can not be figured out with a little reading of the script itself 
and attention to what I am doing. In any case, anything that is missing, simple 
download to source directory, and build inside the jhbuild shell, your done!

Like I said, I'm not too good with the back-end stuff, but it looks like I will 
be getting my own Snow Leopard today, I can re-run the jhbuild stuff from 
scratch, and see if I can't get a framework out. Would this help?


 EMAILING FOR THE GREATER GOOD
Join me

 From: jra...@ceridwen.us
 Subject: Re: Gtk-OSX Frameworks (was: Why are developers...)
 Date: Tue, 10 Nov 2009 07:10:09 -0800
 To: gtk-devel-list@gnome.org
 
 
 On Nov 10, 2009, at 4:16 AM, Paul Davis wrote:
 
  On Mon, Nov 9, 2009 at 1:10 PM, Jack Skellington dac...@gmail.com  
  wrote:
 
  Also if a native Gtk+ OS X framework were available people who are
  maintaining Gtk+ apps would have the option to extend their user base
  to OS X quite quickly.
 
  All it requires to use it is to build the GTK stack yourself using the
  instructions provided (i wish the instructions had not been moved away
  from gnome.org, but they are still easy to find). I should put all
  in quotes because if you choose to follow bleeding edge GTK then you
  will find that maintaining your built version can be quite a lot of
  work in the face of breakages and changes in many different parts of
  the stack. This is not true (or at least, it is MUCH less true) if you
  use a recent release version (there are instructions on how to do that
  included in the gtk osx build info).
 
  I do not believe that using a pre-built GTK OS X framework is
  desirable for users or developers. Include GTK as part of your app
  bundle. Its not hard to do and gives you complete control over which
  version of GTK is used by your app. We do this for Ardour (and now
  Mixbus) (screenshots at http://ardour.org/ and
  http://mixbus.harrisonconsoles.com/). Users download a single app, and
  run it. No framework installation or maintainance.
 
 I haven't built and made available updated frameworks because the  
 approach Richard used to create the first one (still hanging around on 
 gtk-osx.org 
 , as previously noted elsewhere) didn't produce a result that I think  
 I can support. I have in mind a modification of ige-mac-bundler which  
 I think will provide better results, but other tasks have higher  
 priority at the moment.
 
 Some others, including me, have done some work on the gtk-osx- 
 frameworks, and the network graph at github shows that my tree 
 (http://github.com/jralls/gtk-osx-framework 
 ) is current with all of them . Do be aware that there are 3 branches,  
 of which master is probably the only one which will get you close  
 enough to use.
 
 I also agree with Paul here: The Apple Framework idiom doesn't make  
 sense for cross-platform development. It uses special #include syntax  
 and special linking. It doesn't play well with pkg-config. Yes, those  
 are solvable problems, but why? The regular gnu autotools work very  
 well indeed on OSX, and one needs to use it anyway for building on  
 Linux. Why deal with another build chain just for the dubious benefit  
 of using XCode instead of emacs or vim?
 
 Add to that that it's hard to build a non-trivial application using  
 only gtk+. You're going to need a bunch of other libraries, either  
 from gnome, gnu, or freedesktop. They're not going to be in  
 Frameworks, so you're going to have to integrate them the autotools  
 way, so what do you gain from having gtk+ in a set of frameworks?
 
 There is one exception to which I'm quite sympathetic: PyGtk. At  
 present building a downloadable PyGtk app bundle is a royal pain, and  
 a PyGtk framework *might* be part of the solution.
 
 Regards,
 John Ralls
 
 ___
 gtk-devel-list mailing list
 gtk-devel-list@gnome.org
 http://mail.gnome.org/mailman/listinfo/gtk-devel-list

Re: Gtk-OSX Frameworks (was: Why are developers...)

2009-11-10 Thread Tristan Van Berkom
On Tue, Nov 10, 2009 at 1:10 PM, John Ralls jra...@ceridwen.us wrote:

 On Nov 10, 2009, at 4:16 AM, Paul Davis wrote:

 On Mon, Nov 9, 2009 at 1:10 PM, Jack Skellington dac...@gmail.com wrote:


Guys,
   I just wanted to take this ridiculously appropriate opportunity to
congratulate
you on the great improvements on the OSX build I've seen this year.

I by chance had a contract that involved building a GTK+/GStreamer application
that primarily had to run on OSX; two very notable results:

   a.) I started doing osx builds of Glade, and even did the
ige-mac-integration thing,
just because it was so damn easy to do, that says alot because
I've really had
next to no time this year for hacking Glade.

   b.) I started to appreciate jhbuild for the first time, actually
now I just stay
on osx and do anything GTK+ related on osx, just because damn it builds
so easy on osx, easier than on ubuntu (hell I even built nbtk on my
MacBook last week just for the hell of it, I only had to hack
the clipboard code
and run an unstable clutter).

So thanks for making my job so easy, and thanks for making Glade and other
GNOME apps easily available on OS X ;-)

Cheers,
   -Tristan


 Also if a native Gtk+ OS X framework were available people who are
 maintaining Gtk+ apps would have the option to extend their user base
 to OS X quite quickly.

 All it requires to use it is to build the GTK stack yourself using the
 instructions provided (i wish the instructions had not been moved away
 from gnome.org, but they are still easy to find). I should put all
 in quotes because if you choose to follow bleeding edge GTK then you
 will find that maintaining your built version can be quite a lot of
 work in the face of breakages and changes in many different parts of
 the stack. This is not true (or at least, it is MUCH less true) if you
 use a recent release version (there are instructions on how to do that
 included in the gtk osx build info).

 I do not believe that using a pre-built GTK OS X framework is
 desirable for users or developers. Include GTK as part of your app
 bundle. Its not hard to do and gives you complete control over which
 version of GTK is used by your app. We do this for Ardour (and now
 Mixbus) (screenshots at http://ardour.org/ and
 http://mixbus.harrisonconsoles.com/). Users download a single app, and
 run it. No framework installation or maintainance.

 I haven't built and made available updated frameworks because the approach
 Richard used to create the first one (still hanging around on gtk-osx.org,
 as previously noted elsewhere) didn't produce a result that I think I can
 support. I have in mind a modification of ige-mac-bundler which I think will
 provide better results, but other tasks have higher priority at the moment.

 Some others, including me, have done some work on the gtk-osx-frameworks,
 and the network graph at github shows that my tree
 (http://github.com/jralls/gtk-osx-framework) is current with all of them .
 Do be aware that there are 3 branches, of which master is probably the only
 one which will get you close enough to use.

 I also agree with Paul here: The Apple Framework idiom doesn't make sense
 for cross-platform development. It uses special #include syntax and special
 linking. It doesn't play well with pkg-config. Yes, those are solvable
 problems, but why? The regular gnu autotools work very well indeed on OSX,
 and one needs to use it anyway for building on Linux. Why deal with another
 build chain just for the dubious benefit of using XCode instead of emacs or
 vim?

 Add to that that it's hard to build a non-trivial application using only
 gtk+. You're going to need a bunch of other libraries, either from gnome,
 gnu, or freedesktop. They're not going to be in Frameworks, so you're going
 to have to integrate them the autotools way, so what do you gain from having
 gtk+ in a set of frameworks?

 There is one exception to which I'm quite sympathetic: PyGtk. At present
 building a downloadable PyGtk app bundle is a royal pain, and a PyGtk
 framework *might* be part of the solution.

 Regards,
 John Ralls

 ___
 gtk-devel-list mailing list
 gtk-devel-list@gnome.org
 http://mail.gnome.org/mailman/listinfo/gtk-devel-list

___
gtk-devel-list mailing list
gtk-devel-list@gnome.org
http://mail.gnome.org/mailman/listinfo/gtk-devel-list


Re: Gtk-OSX Frameworks (was: Why are developers...)

2009-11-10 Thread John Ralls

On Nov 10, 2009, at 7:46 AM, Shawn Bakhtiar wrote:

I don't know what all the complaint is about... I have been using  
the jhbuild scripts with little to no problems. I have had a few  
dependency issues but nothing that can not be figured out with a  
little reading of the script itself and attention to what I am  
doing. In any case, anything that is missing, simple download to  
source directory, and build inside the jhbuild shell, your done!


On Nov 10, 2009, at 7:54 AM, Tristan Van Berkom wrote:

On Tue, Nov 10, 2009 at 1:10 PM, John Ralls jra...@ceridwen.us  
wrote:


Guys,
  I just wanted to take this ridiculously appropriate opportunity to
congratulate
you on the great improvements on the OSX build I've seen this year.

I by chance had a contract that involved building a GTK+/GStreamer  
application

that primarily had to run on OSX; two very notable results:

  a.) I started doing osx builds of Glade, and even did the
ige-mac-integration thing,
   just because it was so damn easy to do, that says alot because
I've really had
   next to no time this year for hacking Glade.

  b.) I started to appreciate jhbuild for the first time, actually
now I just stay
   on osx and do anything GTK+ related on osx, just because damn  
it builds
   so easy on osx, easier than on ubuntu (hell I even built nbtk  
on my

   MacBook last week just for the hell of it, I only had to hack
the clipboard code
   and run an unstable clutter).

So thanks for making my job so easy, and thanks for making Glade and  
other

GNOME apps easily available on OS X ;-)

Cheers,
  -Tristan



Thanks.

Regards,
John Ralls___
gtk-devel-list mailing list
gtk-devel-list@gnome.org
http://mail.gnome.org/mailman/listinfo/gtk-devel-list


Re: Gtk-OSX Frameworks (was: Why are developers...)

2009-11-10 Thread Jacob Juul Kolding
-menu.c: In function ‘carbon_menu_item_update_active’:
ige-mac-menu.c:347: warning: implicit declaration of function  
‘CheckMenuItem’
ige-mac-menu.c:347: warning: nested extern declaration of  
‘CheckMenuItem’

ige-mac-menu.c: In function ‘carbon_menu_item_update_submenu’:
ige-mac-menu.c:361: warning: implicit declaration of function  
‘SetMenuItemHierarchicalMenu’
ige-mac-menu.c:361: warning: nested extern declaration of  
‘SetMenuItemHierarchicalMenu’
ige-mac-menu.c:367: warning: implicit declaration of function  
‘CreateNewMenu’
ige-mac-menu.c:367: warning: nested extern declaration of  
‘CreateNewMenu’
ige-mac-menu.c:373: warning: implicit declaration of function  
‘SetMenuTitleWithCFString’
ige-mac-menu.c:373: warning: nested extern declaration of  
‘SetMenuTitleWithCFString’

ige-mac-menu.c: In function ‘carbon_menu_item_update_label’:
ige-mac-menu.c:394: warning: implicit declaration of function  
‘SetMenuItemTextWithCFString’
ige-mac-menu.c:394: warning: nested extern declaration of  
‘SetMenuItemTextWithCFString’

ige-mac-menu.c: In function ‘carbon_menu_item_update_accelerator’:
ige-mac-menu.c:417: warning: implicit declaration of function  
‘SetMenuItemModifiers’
ige-mac-menu.c:417: warning: nested extern declaration of  
‘SetMenuItemModifiers’
ige-mac-menu.c:423: warning: implicit declaration of function  
‘SetMenuItemCommandKey’
ige-mac-menu.c:423: warning: nested extern declaration of  
‘SetMenuItemCommandKey’

ige-mac-menu.c: In function ‘carbon_menu_item_create’:
ige-mac-menu.c:588: warning: implicit declaration of function  
‘InsertMenuItemTextWithCFString’
ige-mac-menu.c:588: warning: nested extern declaration of  
‘InsertMenuItemTextWithCFString’
ige-mac-menu.c:592: warning: implicit declaration of function  
‘SetMenuItemProperty’
ige-mac-menu.c:592: warning: nested extern declaration of  
‘SetMenuItemProperty’

ige-mac-menu.c: In function ‘nsevent_handle_menu_key’:
ige-mac-menu.c:724: warning: implicit declaration of function  
‘IsMenuKeyEvent’
ige-mac-menu.c:724: warning: nested extern declaration of  
‘IsMenuKeyEvent’
ige-mac-menu.c:727: warning: implicit declaration of function  
‘GetMenuItemCommandID’
ige-mac-menu.c:727: warning: nested extern declaration of  
‘GetMenuItemCommandID’
ige-mac-menu.c:740: warning: implicit declaration of function  
‘GetMenuID’

ige-mac-menu.c:740: warning: nested extern declaration of ‘GetMenuID’
ige-mac-menu.c:742: warning: implicit declaration of function  
‘GetMenuEventTarget’
ige-mac-menu.c:742: warning: nested extern declaration of  
‘GetMenuEventTarget’
ige-mac-menu.c:742: warning: passing argument 2 of  
‘SendEventToEventTarget’ makes pointer from integer without a cast

ige-mac-menu.c: In function ‘sync_menu_shell’:
ige-mac-menu.c:921: warning: implicit declaration of function  
‘GetMenuAttributes’
ige-mac-menu.c:921: warning: nested extern declaration of  
‘GetMenuAttributes’
ige-mac-menu.c:927: warning: implicit declaration of function  
‘ChangeMenuAttributes’
ige-mac-menu.c:927: warning: nested extern declaration of  
‘ChangeMenuAttributes’

ige-mac-menu.c: In function ‘parent_set_emission_hook_remove’:
ige-mac-menu.c:988: warning: implicit declaration of function  
‘ClearMenuBar’

ige-mac-menu.c:988: warning: nested extern declaration of ‘ClearMenuBar’
ige-mac-menu.c:989: warning: implicit declaration of function  
‘DeleteMenu’

ige-mac-menu.c:989: warning: nested extern declaration of ‘DeleteMenu’
ige-mac-menu.c: In function ‘window_focus’:
ige-mac-menu.c:1001: warning: implicit declaration of function  
‘SetRootMenu’

ige-mac-menu.c:1001: warning: nested extern declaration of ‘SetRootMenu’
ige-mac-menu.c: In function ‘ige_mac_menu_set_quit_menu_item’:
ige-mac-menu.c:1068: warning: implicit declaration of function  
‘GetIndMenuItemWithCommandID’
ige-mac-menu.c:1068: warning: nested extern declaration of  
‘GetIndMenuItemWithCommandID’
ige-mac-menu.c:1071: warning: implicit declaration of function  
‘SetMenuItemCommandID’
ige-mac-menu.c:1071: warning: nested extern declaration of  
‘SetMenuItemCommandID’

make[2]: *** [libigemacintegration_la-ige-mac-menu.lo] Error 1
make[1]: *** [all-recursive] Error 1
make: *** [all] Error 2
*** Error during phase build of ige-mac-integration: ## Error  
running make   *** [10/11]


Anyone?

/Jacob




 EMAILING FOR THE GREATER GOOD
Join me


 From: jra...@ceridwen.us
 Subject: Re: Gtk-OSX Frameworks (was: Why are developers...)
 Date: Tue, 10 Nov 2009 07:10:09 -0800
 To: gtk-devel-list@gnome.org


 On Nov 10, 2009, at 4:16 AM, Paul Davis wrote:

  On Mon, Nov 9, 2009 at 1:10 PM, Jack Skellington  
dac...@gmail.com

  wrote:
 
  Also if a native Gtk+ OS X framework were available people who  
are
  maintaining Gtk+ apps would have the option to extend their  
user base

  to OS X quite quickly.
 
  All it requires to use it is to build the GTK stack yourself  
using the
  instructions provided (i wish the instructions had not been  
moved away
  from gnome.org, but they are still easy to find). I

Re: Gtk-OSX Frameworks (was: Why are developers...)

2009-11-10 Thread John Ralls


On Nov 10, 2009, at 9:20 AM, Jacob Juul Kolding wrote:



That  would be great!
I've been trying to build it on Snow Leopard, butI i'm stuck now with
jhbuild meta-gtk-osx-core failing to  build ige-mac-integration:



Please rerun gtk-osx-build-install.sh to get the most recent  
jhbuildrc. You'll have to build 32-bit to use ige-mac-integration (it  
uses Carbon), but the latest jhbuildrc skips it for you if you build  
for 64-bit. (For now, you can just abandon the module; everything else  
is built.)


Regards,
John Ralls
___
gtk-devel-list mailing list
gtk-devel-list@gnome.org
http://mail.gnome.org/mailman/listinfo/gtk-devel-list


Re: Gtk-OSX Frameworks (was: Why are developers...)

2009-11-10 Thread Jacob Juul Kolding

On Nov 10, 2009, at 7:32 PM, John Ralls wrote:



On Nov 10, 2009, at 9:20 AM, Jacob Juul Kolding wrote:



That  would be great!
I've been trying to build it on Snow Leopard, butI i'm stuck now with
jhbuild meta-gtk-osx-core failing to  build ige-mac-integration:



Please rerun gtk-osx-build-install.sh to get the most recent  
jhbuildrc. You'll have to build 32-bit to use ige-mac-integration  
(it uses Carbon), but the latest jhbuildrc skips it for you if you  
build for 64-bit. (For now, you can just abandon the module;  
everything else is built.)


But how do I build the framework or other apps without the ige stuff?

Jacob Kolding
dac...@juvul.com



Regards,
John Ralls




smime.p7s
Description: S/MIME cryptographic signature
___
gtk-devel-list mailing list
gtk-devel-list@gnome.org
http://mail.gnome.org/mailman/listinfo/gtk-devel-list


RE: Gtk-OSX Frameworks (was: Why are developers...)

2009-11-10 Thread Shawn Bakhtiar
 in isi_app_initialize_default_interface 
(self=0x10201b000) at isiapp.c:6204
#2  0x0001ae0a in main (argc=1, argv=0x7fff5fbfec08) at isimain.c:53


I am going to try an do what Jralls suggest and perhaps re-build with both -g 
and see if I can not trace this better, also try to build the library as 32bit 
and see what happens than. But this application has been running great using 
this technique on the 32 bit interface with no problems what so ever! I can't 
figure out why I have all kinds of bad memory references.

I just noticed the there seems to be 32bit memory addresses intermingled with 
64bit? IE in the above output self is 32bit but the address lookup is 64bit ?? 
Is that right? Same with the code??

Do I need to post this to gtk-app or is this something wrong in the backend 
(perhaps I am compiling with wrong options ??) 

HELP :S :'S :S :S




 EMAILING FOR THE GREATER GOOD
Join me

Subject: Re: Gtk-OSX Frameworks (was: Why are developers...)
From: ja...@juvul.com
Date: Tue, 10 Nov 2009 18:20:26 +0100
CC: gtk-devel-list@gnome.org
To: shashan...@hotmail.com



On Nov 10, 2009, at 4:46 PM, Shawn Bakhtiar wrote:For building an 
application... I couldn't agree more, about the framework vs. jhbuild and 
autotools. You definitely want the latter. I like XCode's editor. when looking 
at source code (the colors man the colors). It also has a lot of nice features 
such as collapsible sections, an intuitive way of knowing if you {} are 
correct, as well as a jump to function feature that list all functions in the 
current file in a drop down menu. However, you can use the editor, and build in 
shell (jhbuild shell). In any case, gdb is a much better debugger to boot.

But yeah.. just try to build mysql with it, or even use it in a build. Good 
luck!!

Also using the ige-mac-bundler, users now simple drag and drop the latest 
package (application) to their application folder, and they are done, 
especially if you adhere to the XDG file system. 

I don't know what all the complaint is about... I have been using the jhbuild 
scripts with little to no problems. I have had a few dependency issues but 
nothing that can not be figured out with a little reading of the script itself 
and attention to what I am doing. In any case, anything that is missing, simple 
download to source directory, and build inside the jhbuild shell, your done!

Like I said, I'm not too good with the back-end stuff, but it looks like I will 
be getting my own Snow Leopard today, I can re-run the jhbuild stuff from 
scratch, and see if I can't get a framework out. Would this help?

That  would be great!I've been trying to build it on Snow Leopard, butI i'm 
stuck now with jhbuild meta-gtk-osx-core failing to  build ige-mac-integration:
*** Building ige-mac-integration *** [10/11]make  make  all-recursiveMaking all 
in srcif /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I. 
-I..  -I.. -Wall -Wunused -Wchar-subscripts -Wmissing-declarations 
-Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wcast-align -std=c99 
-Wno-sign-compare -Wno-pointer-sign -Werror -I/Users/dacobi/gtk/inst/include 
-I/Users/dacobi/gtk/inst/include/gtk-2.0 
-I/Users/dacobi/gtk/inst/lib/gtk-2.0/include 
-I/Users/dacobi/gtk/inst/include/atk-1.0 -I/Users/dacobi/gtk/inst/include/cairo 
-I/Users/dacobi/gtk/inst/include/pango-1.0 
-I/Users/dacobi/gtk/inst/include/glib-2.0 
-I/Users/dacobi/gtk/inst/lib/glib-2.0/include 
-I/Users/dacobi/gtk/inst/include/pixman-1 
-I/Users/dacobi/gtk/inst/include/freetype2 
-I/Users/dacobi/gtk/inst/include/libpng12   -xobjective-c -g -O2 -MT 
libigemacintegration_la-ige-mac-menu.lo -MD -MP -MF 
.deps/libigemacintegration_la-ige-mac-menu.Tpo -c -o 
libigemacintegration_la-ige-mac-menu.lo `test -f 'ige-mac-menu.c' || echo 
'./'`ige-mac-menu.c; \  then mv -f 
.deps/libigemacintegration_la-ige-mac-menu.Tpo 
.deps/libigemacintegration_la-ige-mac-menu.Plo; else rm -f 
.deps/libigemacintegration_la-ige-mac-menu.Tpo; exit 1; filibtool: compile:  
gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -Wall -Wunused -Wchar-subscripts 
-Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith 
-Wcast-align -std=c99 -Wno-sign-compare -Wno-pointer-sign -Werror 
-I/Users/dacobi/gtk/inst/include -I/Users/dacobi/gtk/inst/include/gtk-2.0 
-I/Users/dacobi/gtk/inst/lib/gtk-2.0/include 
-I/Users/dacobi/gtk/inst/include/atk-1.0 -I/Users/dacobi/gtk/inst/include/cairo 
-I/Users/dacobi/gtk/inst/include/pango-1.0 
-I/Users/dacobi/gtk/inst/include/glib-2.0 
-I/Users/dacobi/gtk/inst/lib/glib-2.0/include 
-I/Users/dacobi/gtk/inst/include/pixman-1 
-I/Users/dacobi/gtk/inst/include/freetype2 
-I/Users/dacobi/gtk/inst/include/libpng12 -xobjective-c -g -O2 -MT 
libigemacintegration_la-ige-mac-menu.lo -MD -MP -MF 
.deps/libigemacintegration_la-ige-mac-menu.Tpo -c ige-mac-menu.c  -fno-common 
-DPIC -o .libs/libigemacintegration_la-ige-mac-menu.occ1obj: warnings being 
treated as errorsige-mac-menu.c: In function

Re: Gtk-OSX Frameworks (was: Why are developers...)

2009-11-10 Thread John Ralls


On Nov 10, 2009, at 4:57 PM, Shawn Bakhtiar wrote:


Re-build using jhbuild today:



Let's not clutter up this list with support requests for Gtk-OSX. Gtk- 
OSX has its own support mailing list at gtk-osx-us...@lists.sourceforge.net 
; you can subscribe at http://lists.sourceforge.net/lists/listinfo/gtk-osx-users/subscribe


For those who prefer a web forum, we have one of those, too, at 
http://sourceforge.net/apps.sourceforge.net/phpbb/gtk-osx/
You need to sign up for a sourceforge userid to post to it.

Regards,
John Ralls

___
gtk-devel-list mailing list
gtk-devel-list@gnome.org
http://mail.gnome.org/mailman/listinfo/gtk-devel-list


Re: Gtk-OSX Frameworks (was: Why are developers...)

2009-11-10 Thread Jon Cruz

On Nov 10, 2009, at 5:44 PM, John Ralls wrote:

 For those who prefer a web forum, we have one of those, too, at 
 http://sourceforge.net/apps.sourceforge.net/phpbb/gtk-osx/
 You need to sign up for a sourceforge userid to post to it.

404 on that forum link
___
gtk-devel-list mailing list
gtk-devel-list@gnome.org
http://mail.gnome.org/mailman/listinfo/gtk-devel-list


Re: Gtk-OSX Frameworks (was: Why are developers...)

2009-11-10 Thread John Ralls


On Nov 10, 2009, at 8:32 PM, Jon Cruz wrote:



On Nov 10, 2009, at 5:44 PM, John Ralls wrote:


For those who prefer a web forum, we have one of those, too, at 
http://sourceforge.net/apps.sourceforge.net/phpbb/gtk-osx/
You need to sign up for a sourceforge userid to post to it.


404 on that forum link


Sorry, that's an old link. I'll have to update the Support page, too.  
The correct link is:


http://sourceforge.net/apps/phpbb/gtk-osx/

Thanks for pointing it out.
Regards,
John Ralls
___
gtk-devel-list mailing list
gtk-devel-list@gnome.org
http://mail.gnome.org/mailman/listinfo/gtk-devel-list