Remove framework initialization code

This is left over from an old effort to bundle gtk and its dependencies
into a Mac OS X Framework. The effort was more or less successful but
proved difficult to maintain and impractical to use because gtk programs
don't use the special Framework include syntax.
This commit is contained in:
John Ralls
2013-05-10 17:21:27 -07:00
parent 31fd014c93
commit b75aa67bbe
2 changed files with 0 additions and 5 deletions

View File

@ -345,8 +345,4 @@ gdk_quartz_display_class_init (GdkQuartzDisplayClass *class)
*/
TransformProcessType (&psn, kProcessTransformToForegroundApplication);
/* Initialize GTK+ framework if there is one. */
_gtk_quartz_framework_init_ptr = dlsym (RTLD_DEFAULT, "_gtk_quartz_framework_init");
if (_gtk_quartz_framework_init_ptr)
_gtk_quartz_framework_init_ptr ();
}

View File

@ -22,7 +22,6 @@
#include "config.h"
#include <dlfcn.h>
#include <ApplicationServices/ApplicationServices.h>
#include "gdkquartzdisplay.h"