| 93 | 4. apply: |
| 94 | |
| 95 | diff --git a/giscanner/shlibs.py b/giscanner/shlibs.py |
| 96 | index cac4fdf..26c2f02 100644 |
| 97 | --- a/giscanner/shlibs.py |
| 98 | +++ b/giscanner/shlibs.py |
| 99 | @@ -71,7 +71,7 @@ def _resolve_non_libtool(options, binary, libraries): |
| 100 | if libtool: |
| 101 | args.extend(libtool) |
| 102 | args.append('--mode=execute') |
| 103 | - args.extend(['ldd', '--list', binary.args[0]]) |
| 104 | + args.extend(['/lib/ld-2.5.so', '--list', binary.args[0]]) |
| 105 | proc = subprocess.Popen(args, stdout=subprocess.PIPE) |
| 106 | patterns = {} |
| 107 | for library in libraries: |
| 108 | |
| 109 | --- Makefile.am~ 2009-05-28 12:43:16.000000000 -0300 |
| 110 | +++ Makefile.am 2009-06-23 16:57:10.000000000 -0300 |
| 111 | @@ -18,7 +18,7 @@ |
| 112 | |
| 113 | ACLOCAL_AMFLAGS = -I m4 |
| 114 | |
| 115 | -SUBDIRS = girepository giscanner tools gir docs tests examples |
| 116 | +SUBDIRS = girepository giscanner tools gir docs examples |
| 117 | DIST_SUBDIRS = m4 $(SUBDIRS) |
| 118 | |
| 119 | man_MANS = \ |
| 120 | --- Makefile.in~ 2009-06-21 18:38:36.000000000 -0300 |
| 121 | +++ Makefile.in 2009-06-23 16:57:09.000000000 -0300 |
| 122 | @@ -262,7 +262,7 @@ |
| 123 | GCOVSOURCES = |
| 124 | @GI_GCOV_ENABLED_TRUE@GCOV_DIRS = girepository tools |
| 125 | ACLOCAL_AMFLAGS = -I m4 |
| 126 | -SUBDIRS = girepository giscanner tools gir docs tests examples |
| 127 | +SUBDIRS = girepository giscanner tools gir docs examples |
| 128 | DIST_SUBDIRS = m4 $(SUBDIRS) |
| 129 | man_MANS = \ |
| 130 | docs/g-ir-compiler.1 \ |
| 131 | |
| 132 | }}} |
| 133 | |
| 134 | Compiling Clutter 1.6.2 with gobject introspection in maemo scratchbox |
| 135 | |
| 136 | * ./configure everything with --prefix=/opt |
| 137 | * use the folowing to load the newly compiled versions instead of the installed versions: |
| 138 | |
| 139 | {{{ |
| 140 | export PATH=/opt/bin:$PATH |
| 141 | export LD_LIBRARY_PATH=/opt/lib:/lib:/usr/lib:/usr/local/lib:/usr/X11R6/lib |
| 142 | export PKG_CONFIG_PATH=/opt/lib/pkgconfig/ |
| 143 | }}} |
| 144 | |
| 145 | 1. configure Clutter 1.6.2 |
| 146 | |
| 147 | {{{ |
| 148 | ./configure --enable-gtk-doc --enable-docs=yes --enable-introspection=yes --prefix=/opt |
| 149 | }}} |
| 150 | |
| 151 | |
| 152 | |
| 153 | |