guile-gtk-general
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: initializing guile-gnome module


From: Greg Troxel
Subject: Re: initializing guile-gnome module
Date: 23 Feb 2006 09:10:04 -0500
User-agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.4

  I recommend you to still use

          (use-modules (gnome gtk))

  and rather start your listener as

          guile-gnome-0

Sure, but that assumes that guile-gnome is the dominant module.  The
nice thing about guile and extensions is that you can use many at once
for integration, and it's problematic for any of them to demand to be
primary (well, it's problematic if two do).

But (use-modules (gnome-0)) works just fine in cases where
guile-gnome-0 is awkward.

This is the beginning of an actual guile program (which is executed by
plain guile).   The (sinew database) module uses guile-pg, and the
ospflsa and udaanlsu link in shared libraries to access (different)
routing systems.   So besides guile-gnome there are 3 other extensions
in use.

(use-modules (oop goops))
(use-modules (srfi srfi-8))

(use-modules (ice-9 format))
(use-modules (ice-9 getopt-long))

(use-modules (sinew ospflsa))
(use-modules (sinew udaanlsu))

(use-modules (sinew database))
(use-modules (sinew dns))
(use-modules (sinew lsdb))
(use-modules (sinew gnome-util))

(use-modules (gnome-0))
(use-modules
 (gnome gtk)
 (gnome gtk gdk-event)
 (gnome canvas))

(use-modules (gnome gtk graphical-repl))



-- 
        Greg Troxel <address@hidden>




reply via email to

[Prev in Thread] Current Thread [Next in Thread]