Bonobo 0.9 problems on Tru64 UNIX
- From: Aron Griffis <agriffis bigfoot com>
- To: Miguel de Icaza <miguel helixcode com>
- Cc: gnome-devel-list gnome org
- Subject: Bonobo 0.9 problems on Tru64 UNIX
- Date: Mon, 27 Mar 2000 14:55:24 -0500
Hello Miguel,
Here are the problems I found trying to compile bonobo-0.9 on Tru64
UNIX V5.0:
(1) Please upgrade to libtool-1.3.4. Previous versions don't support
Tru64 V5.0.
ftp://gatekeeper.dec.com/pub/GNU/libtool/libtool-1.3.4.tar.gz
(2) bonobo-browser requires Ted's libuuid, however there is no mention
of where this can be obtained. I finally tracked it down in
e2fsprogs. It would be helpful to include a pointer in the bonobo
documentation.
As a matter of fact, I think it would be the best to include a
copy of libuuid with bonobo, similar to what is typically done
with libintl. That would make things much easier for those of us
who are not using Linux.
(3) Please apply the attached patch, which fixes a couple of minor
problems.
Thanks,
Aron
--
Aron Griffis Compaq Computer Corporation, ZKO3-3/T30
Tru64 Hardware Support 110 Spit Brook Rd, Nashua, NH 03062
603/884-1276 http://bigfoot.com/~agriffis/
--- bonobo-0.9.old/libefs/src/simple_file.c Mon Oct 25 09:16:42 1999
+++ bonobo-0.9/libefs/src/simple_file.c Mon Mar 27 09:22:16 2000
@@ -499,7 +499,7 @@
memcpy (buf, &ce1->data[ind], mb);
br += mb;
- buf += mb;
+ buf = (char *)buf + mb;
file->pos += mb;
}
return br;
@@ -551,7 +551,7 @@
memcpy (&ce1->data[ind], buf, mb);
bw += mb;
- buf += mb;
+ buf = (char *)buf + mb;
file->pos += mb;
}
--- bonobo-0.9.old/components/application-x-gnomine/Makefile.am Sat Feb 5 14:45:40 2000
+++ bonobo-0.9/components/application-x-gnomine/Makefile.am Mon Mar 27 09:25:26 2000
@@ -30,7 +30,8 @@
bonobo_application_x_mines_LDADD = \
$(GNOME_LIBDIR) \
$(top_builddir)/bonobo/libbonobo.la \
- $(GNOMEGNORBA_LIBS)
+ $(GNOMEGNORBA_LIBS) \
+ $(INTLLIBS)
gnorbadir = $(sysconfdir)/CORBA/servers
gnorba_DATA = application-x-mines.gnorba
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]