FIX for https://bugzilla.gnome.org/show_bug.cgi?id=665784 in file configure.ac : add gmodule-2.0
so section looks like:
dnl ================================================================
dnl Check for gtk+
dnl ================================================================
PKG_CHECK_MODULES(GTK, [gtk+-2.0 >= 2.24 gthread-2.0 gmodule-2.0 libxml-2.0 >= 2.4.0])
AC_SUBST(GTK_LIBS)
AC_SUBST(GTK_CFLAGS)
added explicit linking to gmodule-2.0
With that the package glade-gtk2 ( here: glade3-3.8.1 ) builds nicely if you run:
make clean
mv ./configure ./configure-broken
make configure
./configure
make
sudo make install ## you are done!
vr # to run visual ruby employing the glade-3 binary
Search Criteria
Package Details: glade-gtk2 3.8.5-4
Git Clone URL: | https://aur.archlinux.org/glade-gtk2.git (read-only) |
---|---|
Package Base: | glade-gtk2 |
Description: | User interface builder for GTK+ and GNOME (latest version for GTK2) |
Upstream URL: | http://glade.gnome.org/ |
Licenses: | |
Submitter: | None |
Maintainer: | Muflone |
Last Packager: | Muflone |
Votes: | 39 |
Popularity: | 0.074133 |
First Submitted: | 2011-12-31 17:35 |
Last Updated: | 2016-05-22 12:20 |
Dependencies (9)
- desktop-file-utils (desktop-file-utils-git)
- gtk2 (gtk2-patched-gdkwin-nullcheck, gtk2-patched-filechooser-icon-view, gtk2-ubuntu)
- gobject-introspection (gobject-introspection-git) (make)
- gtk-doc (make)
- intltool (make)
- python2 (pypy19, stackless-python2, placeholder) (make)
- python2-gobject2 (make)
- devhelp (devhelp-git, devhelp-gtk2) (optional) – Integrated docs
- python2 (pypy19, stackless-python2, placeholder) (optional) – Python widgets support
Required by (8)
Sources (2)
Latest Comments
Muflone commented on 2016-05-22 12:20
g99 commented on 2016-05-22 11:53
g99 commented on 2016-05-22 10:55
The fix by leha200 to add "-lgmodule-2.0" compiler option after configure in src/glade3-3.8.1/Makefile and to add to LIBS variable: $(GNOME_LIBS)
does not work currently. The package is broken. Still same problem as 2012:
ld: glade_3-main.o: undefined reference to symbol 'g_module_supported'
russo79 commented on 2014-05-24 16:14
For those of you who are interested, the glade-gtk2 AUR package now provides the latest version of Glade for GTK2.
I have requested that this package be deleted from AUR since it is a duplicate.
TingPing commented on 2014-05-24 15:03
Disowned
Joel commented on 2014-05-24 04:43
Current version is 3.8.5
mariusn commented on 2013-10-03 11:31
I'm the new maintainer of this package, and I've updated it to the latest version: 3.8.4
foxycode commented on 2013-04-16 19:15
Been using slackware for the past few months and don't think i'm coming back to arch, making this an orphan so someone else can take over. Cheers!
TingPing commented on 2013-04-16 07:50
Updated PKGBUILD - https://gist.github.com/TingPing/5394174
leha2000 commented on 2012-12-29 11:14
Problem:
/usr/bin/ld: glade_3-main.o: undefined reference to symbol 'g_module_supported'
/usr/bin/ld: note: 'g_module_supported' is defined in DSO /usr/lib/libgmodule-2.0.so.0 so try adding it to the linker command line
/usr/lib/libgmodule-2.0.so.0: could not read symbols: Invalid operation
collect2: error: ld returned 1 exit status
My solve:
Needed to add -lgmodule-2.0 compiler option
After configure in src/glade3-3.8.1/Makefile
add to LIBS variable: $(GNOME_LIBS)
It works!
I've added some fixes for format-nonliteral string
@g99
this fix doesn't seem needed at all, the configure.ac already contains the gmodule-2.0.
Just compile your build in a clean chroot (extra-x86_64-build)