1;; guile-gnome
2;; Copyright (C) 2003,2004 Andy Wingo <wingo at pobox dot com>
3
4;; This program is free software; you can redistribute it and/or
5;; modify it under the terms of the GNU General Public License as
6;; published by the Free Software Foundation; either version 2 of
7;; the License, or (at your option) any later version.
8;;
9;; This program is distributed in the hope that it will be useful,
10;; but WITHOUT ANY WARRANTY; without even the implied warranty of
11;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12;; GNU General Public License for more details.
13;;
14;; You should have received a copy of the GNU General Public License
15;; along with this program; if not, contact:
16;;
17;; Free Software Foundation           Voice:  +1-617-542-5942
18;; 59 Temple Place - Suite 330        Fax:    +1-617-542-2652
19;; Boston, MA  02111-1307,  USA       gnu@gnu.org
20
21;;; Commentary:
22;;
23;;Support for reading in Gtk .defs files as g-wrap instructions
24;;
25;;; Code:
26
27(define-module (gnome gobject defs-support)
28  #:use-module (gnome gw support modules))
29
30(eval-when (expand load eval)
31  (begin-deprecated
32   (issue-deprecation-warning
33    "`(gnome gobject defs-support)' is deprecated. Use `(gnome gw support defs)' instead.")
34   (re-export-modules (gnome gw support defs))))
35