Branch: refs/heads/master Author: Enrico Tröger enrico.troeger@uvena.de Committer: Enrico Tröger enrico.troeger@uvena.de Date: Sun, 20 Apr 2014 15:42:06 UTC Commit: f5154762cca48499691bc88796e012197dfd6c06 https://github.com/geany/geany-plugins/commit/f5154762cca48499691bc88796e012...
Log Message: ----------- geanypy: Add missing linking against gmodule (Waf)
Modified Paths: -------------- geanypy/wscript_build geanypy/wscript_configure
Modified: geanypy/wscript_build 2 lines changed, 1 insertions(+), 1 deletions(-) =================================================================== @@ -24,7 +24,7 @@ from build.wafutils import build_plugin, target_is_win32 # plugin config name = 'GeanyPy' includes = ['geanypy/src'] -libraries = ['PYGTK', 'PYEXT'] +libraries = ['GMODULE', 'PYGTK', 'PYEXT']
build_plugin(bld, name, includes=includes, libraries=libraries)
Modified: geanypy/wscript_configure 6 lines changed, 6 insertions(+), 0 deletions(-) =================================================================== @@ -52,6 +52,12 @@ check_cfg_cached(conf, uselib_store="PYGTK", mandatory=True, args='--cflags --libs') +# GModule +check_cfg_cached(conf, + package='gmodule-2.0', + uselib_store="GMODULE", + mandatory=True, + args='--cflags --libs')
# try to find the Python DSO path, for details see geanypy/m4/ax_python_library.m4 conf.start_msg('Checking for python DSO path')
-------------- This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).