'openbox-0_99_1'.
Changelog for Openbox:
-0.99.0:
+0.99.1:
+ * forced a redraw of the close button after pressing
+ it. Some applications (eg. acroread) ignore the
+ close request and you end up with a funky close
+ button. (Scott Moynes)
+
+0.99.0
+
* renamed header files from *.hh to *.h. (Ben Jansens)
* fix clipping of the date/time in the toolbar with
'AC_FUNC_SETVBUF_REVERSED' => 1,
'AC_HEADER_SYS_WAIT' => 1,
'AC_TYPE_UID_T' => 1,
- 'AM_CONDITIONAL' => 1,
'AC_CHECK_LIB' => 1,
+ 'AM_CONDITIONAL' => 1,
'AC_PROG_LN_S' => 1,
'AC_FUNC_MEMCMP' => 1,
'AC_FUNC_FORK' => 1,
'AC_TYPE_MODE_T' => 1,
'AC_CHECK_TYPES' => 1,
'AC_PROG_YACC' => 1,
- 'AC_TYPE_PID_T' => 1,
'AC_FUNC_STRERROR_R' => 1,
+ 'AC_TYPE_PID_T' => 1,
'AC_STRUCT_ST_BLOCKS' => 1,
'AC_PROG_GCC_TRADITIONAL' => 1,
'AC_TYPE_SIGNAL' => 1,
'AC_FUNC_MALLOC' => 1,
'AC_FUNC_ERROR_AT_LINE' => 1,
'AC_FUNC_FSEEKO' => 1,
- 'AC_FUNC_MMAP' => 1,
'AC_STRUCT_TM' => 1,
+ 'AC_FUNC_MMAP' => 1,
'AC_SUBST' => 1,
- 'AC_PROG_CC' => 1,
- 'AC_PROG_LIBTOOL' => 1
+ 'AC_PROG_LIBTOOL' => 1,
+ 'AC_PROG_CC' => 1
}
], 'Request' )
);
dnl configure.in for Openbox
dnl Initialize autoconf and automake
AC_INIT(src/openbox.cc)
-AM_INIT_AUTOMAKE(openbox,0.99.0,no-define)
+AM_INIT_AUTOMAKE(openbox,0.99.1,no-define)
dnl Determine default prefix
test x$prefix = "xNONE" && prefix="$ac_default_prefix"
install-data-local: menu
test -f $(DESTDIR)$(pkgdatadir)/menu || \
$(INSTALL_DATA) menu $(DESTDIR)$(pkgdatadir)
+
+uninstall-am:
+ rm -f $(DESTDIR)$(pkgdatadir)/menu
+
test -f $(DESTDIR)$(pkgdatadir)/menu || \
$(INSTALL_DATA) menu $(DESTDIR)$(pkgdatadir)
+uninstall-am:
+ rm -f $(DESTDIR)$(pkgdatadir)/menu
+
# Tell versions [3.59,3.63) of GNU make to not export all variables.
# Otherwise a system limit (for SysV at least) may be exceeded.
.NOEXPORT:
distclean-local:
rm -f *\~
+uninstall-am:
+ rmdir $(styledir)
distclean-local:
rm -f *\~
+uninstall-am:
+ rmdir $(styledir)
# Tell versions [3.59,3.63) of GNU make to not export all variables.
# Otherwise a system limit (for SysV at least) may be exceeded.
MaskListLength = sizeof(MaskList) / sizeof(MaskList[0]);
if (modmap) XFreeModifiermap(const_cast<XModifierKeymap*>(modmap));
+#else
+ NumLockMask = Mod2Mask;
+ ScrollLockMask = Mod5Mask;
#endif // NOCLOBBER
}
(re->x >= 0) && ((unsigned) re->x <= frame.button_w) &&
(re->y >= 0) && ((unsigned) re->y <= frame.button_h)) {
close();
- } else {
- redrawCloseButton(False);
}
+ //we should always redraw the close button. some applications
+ //eg. acroread don't honour the close.
+ redrawCloseButton(False);
}
// middle button released
} else if (re->button == 2) {