'Lo.

The fossil build scripts seem to be unable to find openssl on FreeBSD
9.2. It has a choice of the version included with the base system
(in /usr) or the version available from FreeBSD ports (/usr/local),
but it can't seem to find either of them.

Is there any way to get it to give more information about why it's
failing to find them?

$ ./configure --with-openssl=auto
Host System...x86_64-unknown-freebsd9.2
Build System...x86_64-unknown-freebsd9.2
C compiler... cc -g -O2
C++ compiler... c++ -g -O2
Build C compiler...cc
Checking for stdlib.h...ok
Checking for uint32_t...ok
Checking for uint16_t...ok
Checking for int16_t...ok
Checking for uint8_t...ok
Checking for pread...ok
Checking for tclsh...no
Checking for system ssl...no
Checking for ssl in /usr/sfw...no
Checking for ssl in /usr/local/ssl...no
Checking for ssl in /usr/lib/ssl...no
Checking for ssl in /usr/ssl...no
Checking for ssl in /usr/pkg...no
Checking for ssl in /usr/local...no
Checking for ssl in /usr...no
Error: OpenSSL not found. Consider --with-openssl=none to disable HTTPS
support Try: 'configure --help' for options

$ ./configure --with-openssl=/usr 
...
Checking for ssl in /usr...no
Error: OpenSSL not found. Consider --with-openssl=none to disable HTTPS
support Try: 'configure --help' for options

$ ./configure --with-openssl=/usr/lib
...
Checking for ssl in /usr/lib...no
Error: OpenSSL not found. Consider --with-openssl=none to disable HTTPS
support Try: 'configure --help' for options

$ ./configure --with-openssl=/usr/local
...
Checking for ssl in /usr/local...no
Error: OpenSSL not found. Consider --with-openssl=none to disable HTTPS
support Try: 'configure --help' for options

$ ./configure --with-openssl=/usr/local/lib
...
Checking for ssl in /usr/local/lib...no
Error: OpenSSL not found. Consider --with-openssl=none to disable HTTPS
support Try: 'configure --help' for options

$ ls /usr/local/lib/libssl.so*
/usr/local/lib/libssl.so
/usr/local/lib/libssl.so.8

$ ls /usr/lib/libssl.so*
/usr/lib/libssl.so
/usr/lib/libssl.so.6

... and so on.

M
_______________________________________________
fossil-users mailing list
[email protected]
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users

Reply via email to