|
Hydra |
|
Comments:
|
To install on Fedora Core 6 including postgresql support you will need the postgresql-devel package. To enable ssh for hydra, you will need to install libssh version 0.11. by marc at 2007-05-19 15:57:54 |
|
If, after compiling and installing hydra, the tool complains with one of the following messages: hydra: error while loading shared libraries: libpq.so.5: cannot open shared object file: No such file or directory hydra: error while loading shared libraries: libapr-0.so.0: cannot open shared object file: No such file or directory hydra: error while loading shared libraries: libssh.so: cannot open shared object file: No such file or directory hydra: error while loading shared libraries: libaprutil-0.so.0: cannot open shared object file: No such file or directory Then you will need to create symbolic links to the libraries mentioned in the /usr/lib directory. by marc at 2007-10-18 17:08:55 |
|
if you get the following error building XHydra: /usr/include/bits/fcntl2.h:51: error: call to "__open_missing_mode" declared with attribute error: open with O_CREAT in second argument needs 3 arguments
You will need to change the following line in hydra-gtk/src/callbacks.c: by marc at 2009-01-30 18:08:53 |
|
On Slackware, you will receive an error: gcc -I. -Wall -O2 -c hydra-svn.c -DLIBOPENSSL -DLIBSVN -I/usr/include/subversion-1 -I/usr/include/subversion-1 In file included from hydra-svn.c:17: /usr/include/subversion-1/svn_client.h:35:24: error: apr_tables.h: No such file or directory In file included from /usr/include/subversion-1/svn_client.h:37, from hydra-svn.c:17: /usr/include/subversion-1/svn_types.h:28:45: error: apr.h: No such file or directory /usr/include/subversion-1/svn_types.h:29:23: error: apr_pools.h: No such file or directory /usr/include/subversion-1/svn_types.h:30:22: error: apr_hash.h: No such file or directory /usr/include/subversion-1/svn_types.h:32:22: error: apr_time.h: No such file or directory
Install the apache portable runtime (apr and apr-util) version 0.9, subversion and postgresql from source. Since apr installs by default in the /usr/local/apr directory, you will need to adjust the Makefile with the following directories: by marc at 2009-12-29 12:11:02 |
|
I received the following error during make on Ubuntu:
gcc -I. -Wall -O2 -c hydra-svn.c -DLIBOPENSSL -DLIBPOSTGRES -DLIBSVN -DLIBSSH -I/usr/local/include -I/usr/local/include -I/usr/local/include/subversion-1 -I/usr/local/include/apr-1 This is due to the fact that not all options are passed to the compiler. Change the first line in the Makefile file to: CC=gcc `/usr/local/bin/apr-1-config -cppflags -cflags` by marc at 2009-12-29 12:15:07 |
|
During compilation you might get the following error:
/usr/local/lib64/libcrypto.a(dso_dlfcn.o): In function `dlfcn_globallookup:
Add the following to the XLIBS variable in the Makefile: by marc at 2010-06-26 08:02:35 |