Re: Help regarding error

2008-02-29 Thread Marek . Marcola
Hello, when i compile the program p192.c i get following error [EMAIL PROTECTED] ~]# gcc p192.c /tmp/ccicrxZV.o: In function `main': p192.c:(.text+0x12): undefined reference to `DH_new' p192.c:(.text+0x31): undefined reference to `BN_bin2bn' p192.c:(.text+0x3e): undefined reference to

RE: Help regarding error

2008-02-27 Thread David Schwartz
when i compile the program p192.c i get following error [EMAIL PROTECTED] ~]# gcc p192.c This is not the command to compile. This is the command to compile and link. gcc -c p192.c is the command to compile, and you will likely get no errors. /tmp/ccicrxZV.o: In function `main':