After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 611430 - Missing link against libgobject
Missing link against libgobject
Status: RESOLVED WONTFIX
Product: gnome-python
Classification: Deprecated
Component: gconf
2.28.x
Other Mac OS
: Normal normal
: ---
Assigned To: Nobody's working on this now (help wanted and appreciated)
Python bindings maintainers
gnome[unmaintained]
Depends on:
Blocks:
 
 
Reported: 2010-02-28 21:27 UTC by Daniel Macks
Modified: 2014-08-02 13:05 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
Sync flags in gconf/Makefile.am with gconf/wscript dependency (625 bytes, patch)
2010-02-28 21:45 UTC, Daniel Macks
none Details | Review

Description Daniel Macks 2010-02-28 21:27:05 UTC
Building gnome-python-2.28.0 on OS X 10.4/ppc using autotools with all dependencies at the level of current GNOME2.28, I'm getting some unresolved symbols in the gconf bindings:

         (undefined [lazy bound]) external _g_boxed_type_register_static (dynamically looked up)
         (undefined [lazy bound]) external _g_object_unref (dynamically looked up)
         (undefined [lazy bound]) external _g_type_check_instance_cast (dynamically looked up)


Would be saner if this module were linked against the dependent lib that supplies its symbols (symbol-resolution is stricter on OS X than on most other platforms). The WAF wscript already seems to have this additional link, I think just need to add it to the Makefile.am to keep that build system in sync.
Comment 1 Daniel Macks 2010-02-28 21:45:24 UTC
Created attachment 154916 [details] [review]
Sync flags in gconf/Makefile.am with gconf/wscript dependency

wscript has:

>conf.pkg_check_modules('GCONF', 'gconf-2.0 >= 2.12 pygobject-2.0',

and Makefile.am has:

>gconf_la_CPPFLAGS = $(GCONF_CFLAGS)
>gconf_la_LIBADD = $(GCONF_LIBS) $(PYTHON_LIBS)

so use wscript's same package-list for setting the autotools's GCONF_* variables:

-  PKG_CHECK_MODULES(GCONF, gconf-2.0 >= gconf_required_version,
+  PKG_CHECK_MODULES(GCONF, gconf-2.0 >= gconf_required_version pygobject-2.0,
Comment 2 André Klapper 2014-08-02 13:05:51 UTC
The last gnome-python code changes took place in April 2011:
https://git.gnome.org/browse/archive/gnome-python/log/

This project is not under active development anymore.

This project got recently archived in GNOME Git.

It is currently unlikely that there will be any further active development.

Closing this report as WONTFIX as part of Bugzilla Housekeeping to reflect reality. Please feel free to reopen this bug report in the future if anyone takes the responsibility for active development again. If you are interested in maintainership, inform https://mail.gnome.org/mailman/listinfo/desktop-devel-list

gnome-python wrapped GNOME 2's core libraries which are all deprecated and not under development anymore. 
For Python in GNOME 3, see https://wiki.gnome.org/Projects/PyGObject and its gobject-introspection approach.