Prev: xanim: Undefined symbol "__sF" on FreeBSD 8.0
Next: xf86-video-radeonhd: incorrect libpci dependency?
From: Torfinn Ingolfsen on 19 Mar 2010 13:15 On Fri, Mar 19, 2010 at 11:03 AM, Gary Jennejohn <gary.jennejohn(a)freenet.de>wrote: > > First a question: why does 'make deinstall' give this output: ===> Deinstalling dbus-1.2.16_1 pkg_delete: unable to completely remove directory '/usr/local/include/dbus-1.0/dbus' pkg_delete: unable to completely remove directory '/usr/local/include/dbus-1.0' pkg_delete: unable to completely remove directory '/usr/local/etc/dbus-1/system.d' pkg_delete: unable to completely remove directory '/usr/local/etc/dbus-1' pkg_delete: couldn't entirely delete package (perhaps the packing list is incorrectly specified?) And what are these files: root(a)kg-v7# ls /usr/local/etc/dbus-1/s* ConsoleKit.conf org.freedesktop.PolicyKit.conf org.freedesktop.PolicyKit1.conf.dist hal.conf org.freedesktop.PolicyKit1.conf org.gnome.GConf.Defaults.conf > It is possible to turn off all checking by defining DBUS_DISABLE_CHECKS > in config.h _before_ compiling dbus, but that may be a bad idea. > > Anyway, there's alreay /* #undef DBUS_DISABLE_CHECKS */ in config.h > so you could theoretically try this out: > > a) make configure > b) edit work/dbus-1.2.16/config.h and #define DBUS_DISABLE_CHECKS there > c) reinstall dbus > d) see what happens > > I'll try. We'll see what happens. Hmm, when DBUS_DISABLE_CHECKS is set, there is no indication that the system is trying to start up xfce4-session at all. Strange. > No guarantees and use at you own risk, etc. > > --- > Gary Jennejohn > -- Regards, Torfinn Ingolfsen _______________________________________________ freebsd-ports(a)freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "freebsd-ports-unsubscribe(a)freebsd.org"
From: "Kevin Oberman" on 19 Mar 2010 13:54 > Date: Fri, 19 Mar 2010 18:15:05 +0100 > From: Torfinn Ingolfsen <tingox(a)gmail.com> > Sender: owner-freebsd-x11(a)freebsd.org > > On Fri, Mar 19, 2010 at 11:03 AM, Gary Jennejohn > <gary.jennejohn(a)freenet.de>wrote: > > > > > First a question: why does 'make deinstall' give this output: > ===> Deinstalling dbus-1.2.16_1 > pkg_delete: unable to completely remove directory > '/usr/local/include/dbus-1.0/dbus' > pkg_delete: unable to completely remove directory > '/usr/local/include/dbus-1.0' > pkg_delete: unable to completely remove directory > '/usr/local/etc/dbus-1/system.d' > pkg_delete: unable to completely remove directory '/usr/local/etc/dbus-1' > pkg_delete: couldn't entirely delete package (perhaps the packing list is > incorrectly specified?) > > And what are these files: > root(a)kg-v7# ls /usr/local/etc/dbus-1/s* > ConsoleKit.conf org.freedesktop.PolicyKit.conf > org.freedesktop.PolicyKit1.conf.dist > hal.conf org.freedesktop.PolicyKit1.conf > org.gnome.GConf.Defaults.conf For most ports, de-installation does not remove configuration files so that an upgrade does not require re-configuration. If configuration files exist, the removal of the directories created by the installation will fail. This is normal, but the message is disturbing. -- R. Kevin Oberman, Network Engineer Energy Sciences Network (ESnet) Ernest O. Lawrence Berkeley National Laboratory (Berkeley Lab) E-mail: oberman(a)es.net Phone: +1 510 486-8634 Key fingerprint:059B 2DDF 031C 9BA3 14A4 EADA 927D EBB3 987B 3751 _______________________________________________ freebsd-ports(a)freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "freebsd-ports-unsubscribe(a)freebsd.org"
From: Garrett Cooper on 19 Mar 2010 21:50 On Fri, Mar 19, 2010 at 10:54 AM, Kevin Oberman <oberman(a)es.net> wrote: >> Date: Fri, 19 Mar 2010 18:15:05 +0100 >> From: Torfinn Ingolfsen <tingox(a)gmail.com> >> Sender: owner-freebsd-x11(a)freebsd.org >> >> On Fri, Mar 19, 2010 at 11:03 AM, Gary Jennejohn >> <gary.jennejohn(a)freenet.de>wrote: >> >> > >> > First a question: why does 'make deinstall' give this output: >> ===> Deinstalling dbus-1.2.16_1 >> pkg_delete: unable to completely remove directory >> '/usr/local/include/dbus-1.0/dbus' >> pkg_delete: unable to completely remove directory >> '/usr/local/include/dbus-1.0' >> pkg_delete: unable to completely remove directory >> '/usr/local/etc/dbus-1/system.d' >> pkg_delete: unable to completely remove directory '/usr/local/etc/dbus-1' >> pkg_delete: couldn't entirely delete package (perhaps the packing list is >> incorrectly specified?) >> >> And what are these files: >> root(a)kg-v7# ls /usr/local/etc/dbus-1/s* >> ConsoleKit.conf org.freedesktop.PolicyKit..conf >> org.freedesktop.PolicyKit1.conf.dist >> hal.conf org.freedesktop.PolicyKit1.conf >> org.gnome.GConf.Defaults.conf > > For most ports, de-installation does not remove configuration files so > that an upgrade does not require re-configuration. If configuration > files exist, the removal of the directories created by the installation > will fail. This is normal, but the message is disturbing. Those file operations should really be @exec and @unexec though, right? -Garrett _______________________________________________ freebsd-ports(a)freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "freebsd-ports-unsubscribe(a)freebsd.org"
From: Gary Jennejohn on 20 Mar 2010 06:33 On Fri, 19 Mar 2010 18:15:05 +0100 Torfinn Ingolfsen <tingox(a)gmail.com> wrote: > On Fri, Mar 19, 2010 at 11:03 AM, Gary Jennejohn > <gary.jennejohn(a)freenet.de>wrote: > > > It is possible to turn off all checking by defining DBUS_DISABLE_CHECKS > > in config.h _before_ compiling dbus, but that may be a bad idea. > > > I'll try. We'll see what happens. > Hmm, when DBUS_DISABLE_CHECKS is set, there is no indication that the system > is trying to start up xfce4-session at all. Strange. > So, what does that mean? Does xfce4-session start, or do you still see problems? --- Gary Jennejohn _______________________________________________ freebsd-ports(a)freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "freebsd-ports-unsubscribe(a)freebsd.org"
From: Torfinn Ingolfsen on 20 Mar 2010 06:43
On Sat, Mar 20, 2010 at 11:33 AM, Gary Jennejohn <gary.jennejohn(a)freenet.de>wrote: > On Fri, 19 Mar 2010 18:15:05 +0100 > Torfinn Ingolfsen <tingox(a)gmail.com> wrote: > > > On Fri, Mar 19, 2010 at 11:03 AM, Gary Jennejohn > > <gary.jennejohn(a)freenet.de>wrote: > > > > > It is possible to turn off all checking by defining DBUS_DISABLE_CHECKS > > > in config.h _before_ compiling dbus, but that may be a bad idea. > > > > > I'll try. We'll see what happens. > > Hmm, when DBUS_DISABLE_CHECKS is set, there is no indication that the > system > > is trying to start up xfce4-session at all. Strange. > > > > So, what does that mean? Does xfce4-session start, or do you still see > problems? > > I was a bit unclear there. No, xfce4-session does not start (previously it core dumped). If I remove DBUS_DISABLE_CHECKS and reinstalls / restarts dbus, xfce4-sesion core dumps as before. Yes, the problem is still there. Is anybody else running Xorg 7.5 + Xfce 4.6.1 with the vesa driver, successfully? -- Regards, Torfinn Ingolfsen _______________________________________________ freebsd-ports(a)freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "freebsd-ports-unsubscribe(a)freebsd.org" |