diff options
author | fluxgen <fluxgen> | 2003-08-19 21:57:09 (GMT) |
---|---|---|
committer | fluxgen <fluxgen> | 2003-08-19 21:57:09 (GMT) |
commit | 6d1ac53b5f99c098b149e472143d46df68378347 (patch) | |
tree | 321c280d32116a80e56afd12b233e4d7149209b7 | |
parent | 2c1bd69a42b8ea8f54beaa25845a2e714b3e049a (diff) | |
download | fluxbox-6d1ac53b5f99c098b149e472143d46df68378347.zip fluxbox-6d1ac53b5f99c098b149e472143d46df68378347.tar.bz2 |
update
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | configure.in | 4 |
2 files changed, 10 insertions, 2 deletions
@@ -1,5 +1,13 @@ | |||
1 | (Format: Year/Month/Day) | 1 | (Format: Year/Month/Day) |
2 | Changes for 0.9.5: | 2 | Changes for 0.9.5: |
3 | *03/08/19: | ||
4 | * Fixed fallback option for theme items (Henrik) | ||
5 | So the toolbar should look better in old themes | ||
6 | ToolTheme.cc/hh, IconbarTheme.hh/cc, Theme.hh/cc, | ||
7 | * Fixed bug in Subject.cc that cause observers to be added more than once (Henrik) | ||
8 | Subject.cc | ||
9 | *03/08/17: | ||
10 | * Update fbsetbg and fluxbox-generate_menu (Han) | ||
3 | *03/08/16: | 11 | *03/08/16: |
4 | * Fixed iconified windows in toolbar (Henrik) | 12 | * Fixed iconified windows in toolbar (Henrik) |
5 | IconbarTool.cc | 13 | IconbarTool.cc |
diff --git a/configure.in b/configure.in index 1cc348b..680881e 100644 --- a/configure.in +++ b/configure.in | |||
@@ -1,7 +1,7 @@ | |||
1 | dnl Initialize autoconf and automake | 1 | dnl Initialize autoconf and automake |
2 | AC_INIT(src/main.cc) | 2 | AC_INIT(src/main.cc) |
3 | AC_PREREQ(2.52) | 3 | AC_PREREQ(2.52) |
4 | AM_INIT_AUTOMAKE(fluxbox,0.9.4, no-define) | 4 | AM_INIT_AUTOMAKE(fluxbox,0.9.5, no-define) |
5 | 5 | ||
6 | dnl Determine default prefix | 6 | dnl Determine default prefix |
7 | test x$prefix = "xNONE" && prefix="$ac_default_prefix" | 7 | test x$prefix = "xNONE" && prefix="$ac_default_prefix" |
@@ -224,7 +224,7 @@ AC_ARG_ENABLE(debug, | |||
224 | [ --enable-debug include verbose debugging code [default=no]], | 224 | [ --enable-debug include verbose debugging code [default=no]], |
225 | if test x$enableval = "xyes"; then | 225 | if test x$enableval = "xyes"; then |
226 | AC_MSG_RESULT([yes]) | 226 | AC_MSG_RESULT([yes]) |
227 | DEBUG="-DDEBUG -fno-inline" | 227 | DEBUG="-DDEBUG" |
228 | else | 228 | else |
229 | AC_MSG_RESULT([no]) | 229 | AC_MSG_RESULT([no]) |
230 | fi, | 230 | fi, |