From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 11494 invoked by alias); 11 May 2002 15:24:23 -0000 Mailing-List: contact gcc-help-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-help-owner@gcc.gnu.org Received: (qmail 11487 invoked from network); 11 May 2002 15:24:20 -0000 Received: from unknown (HELO postfix3-2.free.fr) (213.228.0.169) by sources.redhat.com with SMTP; 11 May 2002 15:24:20 -0000 Received: from localhost.localdomain (lille-1-a7-62-147-1-133.dial.proxad.net [62.147.1.133]) by postfix3-2.free.fr (Postfix) with ESMTP id 5E4C917F6C; Sat, 11 May 2002 17:24:19 +0200 (CEST) Subject: Re: Help Required From: Alexandre Courbot To: Shalendra Chhabra Cc: gcc-help@gcc.gnu.org In-Reply-To: <20020511151351.23647.qmail@webmail5.rediffmail.com> References: <20020511151351.23647.qmail@webmail5.rediffmail.com> Content-Type: text/plain Content-Transfer-Encoding: 7bit Date: Sat, 11 May 2002 08:24:00 -0000 Message-Id: <1021131082.863.78.camel@progeny> Mime-Version: 1.0 X-SW-Source: 2002-05/txt/msg00113.txt.bz2 > I am sorry I am not able to debug these errors as I am facing > these for the first time and also I have a little experience with > Programing, When I compile a code from > demo files of Openssl, > cli.cpp > I get the following errors What is your compilation line? Obviously you forgot to link to the openssl library. Adding -lssl to the end of your compilation line should help. This flag will tell the linker to link with the ssl library. Whenever you use a library, you have to link to it. > 2. It would be of great help if someone can tell me a link where I > can learn how to write applications using Openssl Library. There must be some good documentation with the openssl package. Else, searching "openssl tutorial" or something like this on www.google.com should give you good results. Alex. -- http://www.gnurou.org