BB Unix Network Monitor - Message
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: {bb} Issue building bbgen
In <374D8C0C0E082B41805155F451000B8F035B13@w2slbxch1.justice.qld.gov.au> "Trevor Holden" <Trevor.Holden@justice.qld.gov.au> writes:
>bb> make
>gcc -g -O2 -Wall -Wno-unused -D_REENTRANT -DHAVE_RPCENT -DMAXMSG=16384
>-DBBDPORTNUMBER=1984 -I/usr/local/include -c -o httptest.o httptest.c
>In file included from digest.h:16,
> from httptest.h:24,
> from httptest.c:28:
>/usr/local/ssl/include/openssl/evp.h:66:34: openssl/opensslconf.h: No
>such file or directory
>Makefile:
># Change the following line if compiler complains about a missing ssl.h
>SSLINCDIR = -I/usr/local/ssl/include
>SSLLIBDIR = -L/usr/local/ssl/lib
OK - I think this is my fault. The rule for building httptest.o
should have included the SSLINCDIR setting, but it doesn't.
The easiest solution is to change Makefile.rules - around line
118 or so you'll find:
httptest.o: httptest.c httptest.h
$(CC) $(CFLAGS) $(CURLINCLUDE) -c -o $@ httptest.c
Change that second line to
$(CC) $(CFLAGS) $(CURLINCLUDE) $(SSLINCDIR) -c -o $@ httptest.c
However, it seems to indicate that your CURL was built without
SSL support (otherwise, the SSL includes would have been picked up
from the curl include's). So if you want to test https-websites,
you should double-check that it supports https-webs. Just run
"curl --version" and see if "https" is listed in the "Protocols"
section.
Henrik
--
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-==-=-=-=-=-=-=-=-=-=-=-=
To unsubscribe from this list, or to subscribe to the bb-digest list
send e-mail to mailto:majordomo@bb4.com with unsubscribe bb -and/or-
subscribe bb-digest in the BODY of the message.
Home |
Main Index |
Thread Index