• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

Icons/H03-May-2022-556483

catalogs/H07-Dec-2021-78,48178,331

config-updates/H07-Dec-2021-2,0481,941

contrib/H07-Dec-2021-633555

examples/H07-Dec-2021-64,20664,120

hints/H07-Dec-2021-717640

m4/H07-Dec-2021-10,6039,574

man/H07-Dec-2021-2,1621,894

scripts/H03-May-2022-1,6211,251

src/H07-Dec-2021-187,086143,876

AUTHORSH A D07-Dec-202140 21

COPYINGH A D07-Dec-202117.6 KiB341281

ChangeLogH A D07-Dec-2021131.3 KiB3,3042,756

INSTALLH A D07-Dec-20211.8 KiB8355

Makefile.amH A D07-Dec-2021228 94

Makefile.inH A D07-Dec-202126.1 KiB849754

NEWSH A D07-Dec-202114 21

READMEH A D07-Dec-20211.4 KiB5638

README_LARGEFILESH A D07-Dec-2021692 1511

THANKSH A D07-Dec-20211.2 KiB3734

aclocal.m4H A D07-Dec-202155.6 KiB1,5551,401

compileH A D07-Dec-20217.2 KiB349259

config.guessH A D07-Dec-202148.6 KiB1,7601,532

config.subH A D07-Dec-202134.4 KiB1,8851,698

configureH A D03-May-2022749.4 KiB25,22321,320

configure.acH A D07-Dec-202133 KiB979856

depcompH A D07-Dec-202123 KiB792502

install-shH A D07-Dec-202115 KiB542352

ltmain.shH A D07-Dec-2021316.5 KiB11,1487,979

missingH A D07-Dec-20216.7 KiB216143

test-driverH A D07-Dec-20214.8 KiB15994

ylwrapH A D07-Dec-20216.7 KiB248143

README

1Worker 4.10.0
2=============
3written by Ralf Hoffmann
4
5Worker is published under the GNU General Public License V2 or
6later. The license should be a part of this archive. The author is not
7responsible for any error or damage that occurs by using this program.
8
9For details read COPYING
10
11What is it:
12===========
13
14Worker is a file manager for the X Window System written by Ralf
15Hoffmann. There is a complete documentation available at the Worker
16Homepage.
17
18Requirements:
19=============
20
21 - UN*X and a C++-compiler (C++14 compatible (GNU C++ >= 4.9 recommended))
22 - X Window System
23
24The following software can be used optionally:
25
26 - AVFS for accessing archives (highly recommended)
27   Install at least version 0.9.5 from http://avf.sourceforge.net/
28 - Libmagic for file type recognition based on the magic database
29   from the 'file' command. Libmagic comes with recent 'file'
30   versions (ftp://ftp.astron.com/pub/file/).
31 - uDisks/HAL support is enabled when the libraries hal, hal-storage
32   or dbus-1 are installed.
33
34Compile & Install:
35==================
36
37Basically it's just
38
39# ./configure && make && make install
40
41but see INSTALL for more instructions.
42
43Homepage:
44=========
45
46http://www.boomerangsworld.de/worker
47
48Mailing list and bug tracker:
49=============================
50
51http://www.boomerangsworld.de/cms/worker/support.html
52
53Contact:
54========
55Ralf Hoffmann <ralf@boomerangsworld.de>
56

README_LARGEFILES

1The following information is only valid if you DO NOT use avfs!
2
3There is a problem in the configure test for checking large file
4support (LFS) (files larger than 2 GB). For some systems, mainly
5RedHat 7 but perhaps other, the test will deactivate the LFS code
6although the system supports it.  This is not a big problem for Worker
7but if you want or need to access these large files, you probably want
8to enable it by running the configure script with an additional C flag:
9
10  CPPFLAGS="-D_FILE_OFFSET_BITS=64" ./configure
11
12Nowadays this shouldn't be a problem anymore. Just check the output of
13the configure script at the end, it will tell you whether large file
14support is enabled or not.
15