diff options
author | Kevin Vandersloot <kfv101@psu.edu> | 2002-02-18 04:53:40 +0000 |
---|---|---|
committer | Kevin Vandersloot <kevinv@src.gnome.org> | 2002-02-18 04:53:40 +0000 |
commit | 0c6705dce8729ee168e492599dfa32cdf965619d (patch) | |
tree | 06e0181a8c2e35c5d687ce3d4350121dc4eb9210 | |
parent | 461c98edb30945165c12af8467ed319d7de2f817 (diff) |
bump version, remove screenshooter from buildGNOME_APPLETS_1_93_0
2002-02-17 Kevin Vandersloot <kfv101@psu.edu>
* configure.in: bump version, remove screenshooter from build
* Makefile.am: remove screenshooter from build
* release 1.93.0
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | Makefile.am | 9 | ||||
-rw-r--r-- | configure.in | 18 | ||||
-rw-r--r-- | gtik/gtik.c | 2 |
4 files changed, 22 insertions, 15 deletions
@@ -1,3 +1,11 @@ +2002-02-17 Kevin Vandersloot <kfv101@psu.edu> + + * configure.in: bump version, remove screenshooter from build + + * Makefile.am: remove screenshooter from build + + * release 1.93.0 + 2002-02-16 Kevin Vandersloot <kfv101@psu.edu> * configure.in: clean up and remove unecessary checks diff --git a/Makefile.am b/Makefile.am index fd5d5bc2a..d5ec6f160 100644 --- a/Makefile.am +++ b/Makefile.am @@ -5,10 +5,10 @@ if BUILD_GTOP_APPLETS gtop_SUBDIRS = $(gtop_applets) endif -wordexp_applets = screenshooter -if HAVE_WORDEXP -wordexp_SUBDIRS = $(wordexp_applets) -endif +# wordexp_applets = screenshooter +# if HAVE_WORDEXP +# wordexp_SUBDIRS = $(wordexp_applets) +# endif vfs_applets = \ gtik \ @@ -62,7 +62,6 @@ SUBDIRS = \ po \ $(mixer_SUBDIRS) \ $(modemlights_SUBDIRS) \ - $(wordexp_SUBDIRS) \ $(cdplayer_SUBDIRS) \ $(always_built_SUBDIRS) \ $(gtop_SUBDIRS) \ diff --git a/configure.in b/configure.in index 438a95f8f..e9e8f16e1 100644 --- a/configure.in +++ b/configure.in @@ -1,6 +1,6 @@ AC_INIT(drivemount/drivemount.c) AM_CONFIG_HEADER(config.h) -AM_INIT_AUTOMAKE(gnome-applets, 1.92.2) +AM_INIT_AUTOMAKE(gnome-applets, 1.93.0) AM_MAINTAINER_MODE @@ -173,12 +173,12 @@ dnl ****************************************** dnl ** screenshooter applet check ** dnl ****************************************** -have_wordexp=false -AC_CHECK_FUNC(wordexp,have_wordexp=true) -AM_CONDITIONAL(HAVE_WORDEXP,$have_wordexp) -if test -z "$have_wordexp"; then -AC_MSG_WARN([*** No wordexp (glibc >=2.1) Screen-shooter will not be built ***]) -fi +dnl have_wordexp=false +dnl AC_CHECK_FUNC(wordexp,have_wordexp=true) +dnl AM_CONDITIONAL(HAVE_WORDEXP,$have_wordexp) +dnl if test -z "$have_wordexp"; then +dnl AC_MSG_WARN([*** No wordexp (glibc >=2.1) Screen-shooter will not be built ***]) +dnl fi dnl ****************************************** dnl ****************************************** @@ -310,7 +310,6 @@ mini-commander/Makefile mini-commander/src/Makefile mixer/Makefile drivemount/Makefile -screenshooter/Makefile modemlights/Makefile cdplayer/Makefile multiload/Makefile @@ -429,7 +428,8 @@ dnl drivemount/docs/it/Makefile dnl drivemount/docs/ja/Makefile - +dnl This should be replaced by panel screenshooter +dnl screenshooter/Makefile diff --git a/gtik/gtik.c b/gtik/gtik.c index 3f2a0c126..4f88d1704 100644 --- a/gtik/gtik.c +++ b/gtik/gtik.c @@ -1078,7 +1078,7 @@ g_print ("configured \n"); hbox = gtk_hbox_new(FALSE,5); - button = gtk_button_new_with_label(_("Remove Selected")); + button = gtk_button_new_with_mnemonic(_("_Remove Selected")); g_object_set_data (G_OBJECT (button), "list", list); g_signal_connect (G_OBJECT (button), "clicked", G_CALLBACK (remove_symbol), stockdata); |