diff options
author | George Lebl <jirka@5z.com> | 2000-02-12 01:58:28 +0000 |
---|---|---|
committer | George Lebl <jirka@src.gnome.org> | 2000-02-12 01:58:28 +0000 |
commit | cc5dd258092a68b58c8d7b27cabc51f71029c3aa (patch) | |
tree | 02f9e79462047d156d5f01fc87ed77c0c95bfdc1 | |
parent | 185051f9feced9eec9d4b1b1efb59f40416f2e4d (diff) |
make the printer a separate extern applet. Due to gtkplug/socketGNOME_CORE_1_1_3
Fri Feb 11 17:56:10 2000 George Lebl <jirka@5z.com>
* gen_util/Makefile.am,gen_util.gnorba,printer.c: make the printer a
separate extern applet. Due to gtkplug/socket braindamage we can't
do dnd on shlib applets
After 3 hours of trying to make dnd work work with same app gtkplug/socket
I gave up
-George
-rw-r--r-- | mailcheck/ChangeLog | 6 | ||||
-rw-r--r-- | mailcheck/Makefile.am | 12 |
2 files changed, 16 insertions, 2 deletions
diff --git a/mailcheck/ChangeLog b/mailcheck/ChangeLog index f7c386c5c..aaa2644bc 100644 --- a/mailcheck/ChangeLog +++ b/mailcheck/ChangeLog @@ -1,3 +1,9 @@ +Fri Feb 11 17:56:10 2000 George Lebl <jirka@5z.com> + + * gen_util/Makefile.am,gen_util.gnorba,printer.c: make the printer a + separate extern applet. Due to gtkplug/socket braindamage we can't + do dnd on shlib applets + Mon Feb 07 16:49:45 2000 George Lebl <jirka@5z.com> * gen_util/clock.c: use applet_widget_queue_resize when we update so diff --git a/mailcheck/Makefile.am b/mailcheck/Makefile.am index 80acff5b8..6153d783d 100644 --- a/mailcheck/Makefile.am +++ b/mailcheck/Makefile.am @@ -6,6 +6,7 @@ INCLUDES = -I. -I$(srcdir) \ -I$(includedir) $(GNOME_INCLUDEDIR) lib_LTLIBRARIES = libgen_util_applet.la +bin_PROGRAMS = printer_applet libgen_util_applet_la_SOURCES = \ main.c \ @@ -13,11 +14,18 @@ libgen_util_applet_la_SOURCES = \ mailcheck.h \ popcheck.c \ popcheck.h \ - printer.c \ - printer.h \ clock.c \ clock.h +printer_applet_SOURCES = \ + printer.c \ + printer.h + +printer_applet_LDADD = ../../panel/libpanel_applet.la \ + $(GNOME_LIBDIR) $(ORB_LIBS) \ + $(GNOMEUI_LIBS) $(GNORBA_LIBS) \ + $(INTLLIBS) + PRINTER_BITMAPS = print.xpm MAILCHECK_BITMAPS = email.png email-e.png tux-anim.png email-eclouds.png |