Fixed SF Bug #1905810
Updated install instructions git-svn-id: https://svn.code.sf.net/p/keepassx/code/trunk@168 b624d157-de02-0410-bad0-e51aec6abb33
This commit is contained in:
parent
0664d4bed0
commit
d220ab78c9
2
INSTALL
2
INSTALL
|
@ -1,7 +1,7 @@
|
||||||
Installation instructions for *nix:
|
Installation instructions for *nix:
|
||||||
-----------------------------------
|
-----------------------------------
|
||||||
1. qmake-qt4 / qmake
|
1. qmake-qt4 / qmake
|
||||||
You have to use qmake of Qt >= 4.2.0, depending on your distro it is called qmake or qmake-qt4.
|
You have to use qmake of Qt >= 4.3.0, depending on your distro it is called qmake or qmake-qt4.
|
||||||
By default KeePassX is installed to /usr, you can change that by adding PREFIX=[PATH] to the qmake command.
|
By default KeePassX is installed to /usr, you can change that by adding PREFIX=[PATH] to the qmake command.
|
||||||
You can also add DEBUG=1 to build KeePassX with debug symbols.
|
You can also add DEBUG=1 to build KeePassX with debug symbols.
|
||||||
2. make
|
2. make
|
||||||
|
|
|
@ -55,7 +55,7 @@ extern "C"
|
||||||
#elif ULONG_MAX == 0xfffffffful
|
#elif ULONG_MAX == 0xfffffffful
|
||||||
typedef unsigned long uint_32t;
|
typedef unsigned long uint_32t;
|
||||||
#elif defined( _CRAY )
|
#elif defined( _CRAY )
|
||||||
# error This code needs 32-bit data types, which Cray machines don't provide
|
# error This code needs 32-bit data types, which Cray machines do not provide
|
||||||
#else
|
#else
|
||||||
# error Please define uint_32t as a 32-bit unsigned integer type in tdefs.h
|
# error Please define uint_32t as a 32-bit unsigned integer type in tdefs.h
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -32,8 +32,8 @@ unix : !macx : !isEqual(QMAKE_WIN32,1) {
|
||||||
}
|
}
|
||||||
TARGET = ../bin/keepassx
|
TARGET = ../bin/keepassx
|
||||||
target.path = $${PREFIX}/bin
|
target.path = $${PREFIX}/bin
|
||||||
data.files += ../share/keepassx/*
|
data.files += ../share/keepassx
|
||||||
data.path = $${PREFIX}/share/keepassx
|
data.path = $${PREFIX}/share
|
||||||
pixmaps.files = ../share/pixmaps/*
|
pixmaps.files = ../share/pixmaps/*
|
||||||
pixmaps.path = $${PREFIX}/share/pixmaps
|
pixmaps.path = $${PREFIX}/share/pixmaps
|
||||||
desktop.files = ../share/applications/*
|
desktop.files = ../share/applications/*
|
||||||
|
|
Loading…
Reference in New Issue