tomm / cryptkeeper

A system tray (gnome, xfce, kde) applet that manages EncFS encrypted folders.
http://tom.noflag.org.uk/cryptkeeper.html
GNU General Public License v3.0
54 stars 17 forks source link

Make it compile on Redhat (solved) #28

Open Gerhard-Vienna opened 6 years ago

Gerhard-Vienna commented 6 years ago

Two small modifications are needed to make it compile on "Red Hat Enterprise Linux Server 7.5 (Maipo)" IMPORTANT: Make this modifications before running the bootstrap-script! (Or re-run ./bootstrap afterwards)

In file src/lsof.cpp add after: #include <cstring> this line: #include <unistd.h>

In file src/Makefile.am add after: DEFS = -DLOCALEDIR=\"$(localedir)\" @DEFS@ this line: AM_LDFLAGS = -lX11

Now run: ./bootstrap ./configure make sudo make install

Gerhard

PS: There seems to be no way to post comments.
Therefore i put it here under "issues".....