* small updates

This commit is contained in:
Dirk-Jan C. Binnema
2010-08-21 20:44:53 +03:00
parent a3ec22bae9
commit 37b0ea3bc3
2 changed files with 9 additions and 11 deletions

12
TODO
View File

@ -3,9 +3,8 @@
* Future release * Future release
** release 0.8 [%] ** release 0.9 [%]
- [ ] bookmarks - [ ] bookmarks
- [ ] completion for zsh
- [ ] query on time - [ ] query on time
- [ ] mu-setup (?) - [ ] mu-setup (?)
- [ ] mu stats - [ ] mu stats
@ -16,18 +15,17 @@
- [ ] search for date interval etc. - [ ] search for date interval etc.
- [ ] detect mail threads (?) - [ ] detect mail threads (?)
- [ ] clean up mu-msg-field, add formatting(?) - [ ] clean up mu-msg-field, add formatting(?)
- [ ] xml,json,sexp output
** release 0.7.1 [71%] ** release 0.8 [57%]
- [X] remove hard gio dependency - [X] remove gio dependency
- [X] fix macos/wordexp bug(?) - [X] fix macos/wordexp bug(?)
- [X] fix rhel5 installation issue - [X] fix rhel5 installation issue
- [X] don't require gio
- [X] summary - [X] summary
- [ ] attachment handling - [ ] attachment handling
- [ ] review docs - [ ] review docs
- [ ] xml,json,sexp output - [ ] completion for zsh
* Release already done * Release already done

View File

@ -1,4 +1,4 @@
## Copyright (C) 2010 Dirk-Jan C. Binnema <djcb@djcbsoftware.nl> ## Copyright (C) 2008-2010 Dirk-Jan C. Binnema <djcb@djcbsoftware.nl>
## ##
## This program is free software; you can redistribute it and/or modify ## This program is free software; you can redistribute it and/or modify
## it under the terms of the GNU General Public License as published by ## it under the terms of the GNU General Public License as published by
@ -28,8 +28,7 @@ AM_SILENT_RULES([yes])
# #
# note that MU_XAPIAN_DB_VERSION does not necessarily follow MU # note that MU_XAPIAN_DB_VERSION does not necessarily follow MU
# versioning, as we hopefully don't have updates for each version; # versioning, as we hopefully don't have updates for each version;
# also, this has nothing to do with the version of the Xapian library # also, this has nothing to do with Xapian's software version
#
AC_DEFINE(MU_XAPIAN_DB_VERSION,["7.0"], [Schema version of the database]) AC_DEFINE(MU_XAPIAN_DB_VERSION,["7.0"], [Schema version of the database])
LT_INIT # don't use AC_PROG_LIBTOOL anymore LT_INIT # don't use AC_PROG_LIBTOOL anymore
@ -140,10 +139,10 @@ Makefile
src/Makefile src/Makefile
src/tests/Makefile src/tests/Makefile
man/Makefile man/Makefile
contrib/Makefile
]) ])
AC_OUTPUT AC_OUTPUT
echo echo
echo "mu configuration is complete." echo "mu configuration is complete."
echo "-----------------------------" echo "-----------------------------"
@ -155,3 +154,4 @@ echo "<muhome>/xapian-0.6 directory to save some disk space"
echo echo
echo "type 'make' to build mu, or 'make check' to run the unit tests." echo "type 'make' to build mu, or 'make check' to run the unit tests."
echo "use 'make V=1' to show the detailed output during the build"