Re: openssl development libraries not found
On Sat, Sep 25, 2010 at 1:22 PM, Mamoru Tasaka wrote: > Kalpa Welivitigoda wrote, at 09/25/2010 11:17 AM +9:00: >> hi, >> >> I'm on F13 and I'm trying to compile a package from the source. The >> package is delasa (www.dalesa.lk) and when I ./configure. I get >> 'configure: error: openssl development libraries not found'. >> This is the output of 'yum search openssl | grep dev' >> >> openssl-devel.i686 : Files for development of applications which will use >> globus-gsi-openssl-error-devel.i686 : Globus Toolkit - Globus OpenSSL Error >> globus-openssl-devel.i686 : Globus Toolkit - Openssl Library Development >> Files >> globus-openssl-module-devel.i686 : Globus Toolkit - Globus OpenSSL Module >> libpathfinder-openssl-devel.i686 : Pathfinder development libraries based on >> xmlsec1-openssl-devel.i686 : OpenSSL crypto plugin for XML Security Library >> tcltls-devel.i686 : Header files for the OpenSSL extension for Tcl >> nss_compat_ossl-devel.i686 : Development libraries for nss_compat_ossl >> >> and I've installed all the above listed packages and the error still remains. >> >> and this is the latter part of config.log >> > > If you are trying dalesa 1.1.1 (i.e. > http://downloads.sourceforge.net/dalesa/dalesa-1.1.1.tar.bz2 ) and > are seeing error messages in config.log like: > -- > /usr/bin/ld: /tmp/ccdx7W9g.o: undefined reference to symbol 'EVP_MD_CTX_init' > /usr/bin/ld: note: 'EVP_MD_CTX_init' is defined in DSO /lib/libcrypto.so.10 > so try adding it to the linker command line > /lib/libcrypto.so.10: could not read symbols: Invalid operation > collect2: ld returned 1 exit status > -- > try this: > -- > --- dalesa-1.1.1/configure.in.debug 2010-08-21 04:14:06.0 +0900 > +++ dalesa-1.1.1/configure.in 2010-09-25 16:38:34.0 +0900 > @@ -25,7 +25,9 @@ > > # Checks for libraries. > LDFLAGS="$LDFLAGS -L/usr/lib/mysql" > -AC_CHECK_LIB(ssl,EVP_MD_CTX_init,, AC_MSG_ERROR(openssl development > libraries not found)) > +AC_CHECK_LIB(ssl,EVP_MD_CTX_init,, > + AC_CHECK_LIB(crypto,EVP_MD_CTX_init,, > + AC_MSG_ERROR(openssl development libraries not found))) > AC_CHECK_LIB(xml2,xmlNewParserCtxt,, AC_MSG_ERROR(xml2 development libraries > not found)) > AC_CHECK_LIB(ossp-uuid,uuid_create,, AC_MSG_ERROR(uuid library not found)) > Sry. I can't understand what you say. > -- > > Also please check > http://fedoraproject.org/wiki/Features/ChangeInImplicitDSOLinking > http://fedoraproject.org/wiki/UnderstandingDSOLinkChange > > Regards, > Mamoru > -- > users mailing list > users@lists.fedoraproject.org > To unsubscribe or change subscription options: > https://admin.fedoraproject.org/mailman/listinfo/users > Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines > -- Best Regards, W.H.Kalpa Pathum http://kalpapathum.blogspot.com http://thiraya.wordpress.com -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Re: openssl development libraries not found
On Sat, Sep 25, 2010 at 8:23 PM, Mamoru Tasaka wrote: > Kalpa Pathum Welivitigoda wrote, at 09/25/2010 09:18 PM +9:00: >> On Sat, Sep 25, 2010 at 1:22 PM, Mamoru Tasaka >> wrote: >>> Kalpa Welivitigoda wrote, at 09/25/2010 11:17 AM +9:00: >>>> hi, >>>> >>>> I'm on F13 and I'm trying to compile a package from the source. The >>>> package is delasa (www.dalesa.lk) and when I ./configure. I get >>>> 'configure: error: openssl development libraries not found'. >>>> This is the output of 'yum search openssl | grep dev' >>>> >>>> openssl-devel.i686 : Files for development of applications which will use >>>> globus-gsi-openssl-error-devel.i686 : Globus Toolkit - Globus OpenSSL Error >>>> globus-openssl-devel.i686 : Globus Toolkit - Openssl Library Development >>>> Files >>>> globus-openssl-module-devel.i686 : Globus Toolkit - Globus OpenSSL Module >>>> libpathfinder-openssl-devel.i686 : Pathfinder development libraries based >>>> on >>>> xmlsec1-openssl-devel.i686 : OpenSSL crypto plugin for XML Security Library >>>> tcltls-devel.i686 : Header files for the OpenSSL extension for Tcl >>>> nss_compat_ossl-devel.i686 : Development libraries for nss_compat_ossl >>>> >>>> and I've installed all the above listed packages and the error still >>>> remains. >>>> >>>> and this is the latter part of config.log >>>> >>> >>> If you are trying dalesa 1.1.1 (i.e. >>> http://downloads.sourceforge.net/dalesa/dalesa-1.1.1.tar.bz2 ) and >>> are seeing error messages in config.log like: >>> -- >>> /usr/bin/ld: /tmp/ccdx7W9g.o: undefined reference to symbol >>> 'EVP_MD_CTX_init' >>> /usr/bin/ld: note: 'EVP_MD_CTX_init' is defined in DSO /lib/libcrypto.so.10 >>> so try adding it to the linker command line >>> /lib/libcrypto.so.10: could not read symbols: Invalid operation >>> collect2: ld returned 1 exit status >>> -- >>> try this: >>> -- >>> --- dalesa-1.1.1/configure.in.debug 2010-08-21 04:14:06.0 +0900 >>> +++ dalesa-1.1.1/configure.in 2010-09-25 16:38:34.0 +0900 >>> @@ -25,7 +25,9 @@ >>> >>> # Checks for libraries. >>> LDFLAGS="$LDFLAGS -L/usr/lib/mysql" >>> -AC_CHECK_LIB(ssl,EVP_MD_CTX_init,, AC_MSG_ERROR(openssl development >>> libraries not found)) >>> +AC_CHECK_LIB(ssl,EVP_MD_CTX_init,, >>> + AC_CHECK_LIB(crypto,EVP_MD_CTX_init,, >>> + AC_MSG_ERROR(openssl development libraries not found))) >>> AC_CHECK_LIB(xml2,xmlNewParserCtxt,, AC_MSG_ERROR(xml2 development >>> libraries not found)) >>> AC_CHECK_LIB(ossp-uuid,uuid_create,, AC_MSG_ERROR(uuid library not found)) >>> >> >> Sry. I can't understand what you say. >> >>> -- >>> >>> Also please check >>> http://fedoraproject.org/wiki/Features/ChangeInImplicitDSOLinking >>> http://fedoraproject.org/wiki/UnderstandingDSOLinkChange >>> >>> Regards, >>> Mamoru >>> -- > > i.e. configure.in in dalesa-1.1.1.tar.bz2 needs fixing. > Open configure.in on some editor and edit around the line 28, then > again run $ sh autogen.sh. > I just commented line 28 and it compiles fine. But the program doesn't show up although it is in Applications -> Internet. May be perhaps a bug with the code or the commenting caused the error. > Regards, > Mamoru > -- > users mailing list > users@lists.fedoraproject.org > To unsubscribe or change subscription options: > https://admin.fedoraproject.org/mailman/listinfo/users > Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines > -- Best Regards, W.H.Kalpa Pathum http://kalpapathum.blogspot.com http://thiraya.wordpress.com -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
limitations of fedorapeople.org
Hi, I want to download F16 and currently my internet connection doesn't allow to download large files. The maximum allowable size is 50MB a file. I do have my space on fedorapeople.org. Is it allowed to download F16 DVD iso to my space on fedorapeople.org, split into 50MB files using tar and download them, so that I can create the iso locally and delete the files on fedorapeople.org? I want to know whether this is allowed and whether there are any online services that I can use to get the job done. That is to split the iso file into 50MB files and download them. -- Best Regards, Kalpa Pathum Welivitigoda http://fedoraproject.org/wiki/User:Callkalpa http://about.me/callkalpa -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Printing issue on Fedora 16
Hi, I can print a file with 'lp' but I can't print the same file opened in gedit.My printer is Espon LQ-300 Any help is highly appreciated. -- Best Regards, Kalpa Pathum Welivitigoda http://fedoraproject.org/wiki/User:Callkalpa http://about.me/callkalpa -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines Have a question? Ask away: http://ask.fedoraproject.org