*** empty log message ***

This commit is contained in:
dockes 2005-10-20 07:51:45 +00:00
parent 722a3ed8c2
commit cbfb93d53e
2 changed files with 14 additions and 3 deletions

View File

@ -7,8 +7,6 @@
Recoll
Introduction
This is Recoll, a personal full text indexing system.
Recoll is free and copyrighted under the GPL license, see COPYING inside
@ -19,7 +17,7 @@ Recoll
(Xapian), and I find it quite useful right now. You might be interested in
using Recoll to index your home directory instead of using xapian's Omega,
for example, if you do not want to run a web server, or your data is not
iso-8859-1. But the query features are much less sophisticated yet.
iso-8859-1. But the query features are much less sophisticated for now.
See INSTALL inside the distribution for compiling and installing, very
much by hand for now, I hope things will get better in the near future.

13
src/configure vendored Executable file
View File

@ -0,0 +1,13 @@
#!/bin/sh
# A real one will come in time ...
sys=`uname`
if [ -f mk/$sys ]; then
(cd mk; test -f sysconf || ln -s $sys sysconf)
else
cat <<EOF
No system configuration file found in mk/ for '$sys'. Maybe you
could try to write one, starting from one of the existing files, they
are really simple.
EOF
fi