[TF] Broken SSL
Brought to you by:
kenkeys
|
From: jrh at zeppelin.n. (J. Howard) - 2003-05-29 23:40:12
|
Right #define is fine, that's normal C syntax. My guess is that Redhat is putting SSL somewhere other than the standard library places, such as /usr/local/lib perhaps. Try rerunning the config command as: LD_LIBRARY_PATH=/usr/local/lib CPPFLAGS="-I/usr/local/include" ./configure Unless you can do a 'locate libssl.so' for me and tell me where it is. Of course the more permanent solution is to have the configure flag work. Currently it seems like the configure system is only about half done and I'm not sure if it's in the works to finish it up. Gwen Morse <ren...@ya...> writes: > > Okay, I did that (set have_libssl to 0 in the config.h > file). > > It had a pound sign (#) before it (which made it look > like a comment). Should I have removed that? I didn't, > because all the other "have" settings also had pound > signs before them. > > This is the complete output from the moment I type > "make all". Near the bottom it says it can't fine > -lssl and it dies shortly thereafter which seems to be > part of the whole SSL issue I'm having. > > [dh31:tf50]$ make all > make[1]: Entering directory `/home/goldmoon/tf50/src' > gcc -g -O2 -c -o command.o command.c > gcc -g -O2 -c -o dstring.o dstring.c > gcc -g -O2 -c -o expand.o expand.c > gcc -g -O2 -c -o expr.o expr.c > gcc -g -O2 -c -o help.o help.c > gcc -g -O2 -c -o history.o history.c > gcc -g -O2 -c -o keyboard.o keyboard.c > gcc -g -O2 -c -o macro.o macro.c > gcc -g -O2 -c -o main.o main.c > gcc -g -O2 -c -o malloc.o malloc.c > gcc -g -O2 -c -o output.o output.c > gcc -g -O2 -c -o process.o process.c > gcc -g -O2 -c -o search.o search.c > gcc -g -O2 -c -o signals.o signals.c > gcc -g -O2 -c -o socket.o socket.c > socket.c:155:1: warning: "h_errno" redefined > In file included from socket.c:134: > /usr/include/netdb.h:58:1: warning: this is the > location of the previous definition > gcc -g -O2 -c -o tfio.o tfio.c > gcc -g -O2 -c -o tty.o tty.c > gcc -g -O2 -c -o util.o util.c > gcc -g -O2 -c -o variable.o variable.c > gcc -g -O2 -c -o world.o world.c > cd pcre-2.08 && \ > make CC='gcc' CFLAGS='-O' O=o libpcre.a && \ > ranlib libpcre.a > make[2]: Entering directory > `/home/goldmoon/tf50/src/pcre-2.08' > gcc -c -O maketables.c > gcc -c -O get.c > gcc -c -O study.c > gcc -o dftables -O dftables.c > ./dftables >chartables.c > gcc -c -O pcre.c > rm -f libpcre.a > ar cq libpcre.a maketables.o get.o study.o pcre.o > make[2]: Leaving directory > `/home/goldmoon/tf50/src/pcre-2.08' > gcc -g -O2 -o tf command.o dstring.o expand.o expr.o > help.o history.o keyboard.o macro.o main.o malloc.o > output.o process.o search.o signals.o socket.o tfio.o > tty.o util.o variable.o world.o -lz -lm -ltermcap > -lssl -lcrypto -Lpcre-2.08 -lpcre > /usr/bin/ld: cannot find -lssl > collect2: ld returned 1 exit status > make[1]: *** [tf] Error 1 > make[1]: Leaving directory `/home/goldmoon/tf50/src' > make: *** [all] Error 2 > > > Gwen > > > > __________________________________ > Do you Yahoo!? > Yahoo! Calendar - Free online calendar with sync to Outlook(TM). > http://calendar.yahoo.com > _______________________________________________ > TinyFugue mailing list > Tin...@tc... > http://www.tcp.com/mailman/listinfo/tinyfugue > -- Josh Howard <jr...@ze...> |