Ignore:
Timestamp:
2019-03-25T15:29:56+13:00 (5 years ago)
Author:
ak19
Message:

Updating wget README to document changes made in revision 32908

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/greenstone2/build-src/packages/wget/README

    r31842 r32922  
    108108This way our perl code can launch wget as before, without always passing that additional flag. Hopefully the output in the Download pane will be the same so that the donwload parsing will work.
    109109
     110
     11110) 15/03/2019
     112Dr Bainbridge discovered and fixed an issue between wget and openSSL that appeared on an svn checkout on CentOS. When wget was being compiled, wget expected a folder called "lib64" to exist in the openssl that had been compiled up. But the folder created was called "lib". Dr Bainbridge experimented to find that copying the openssl "lib" folder across as "lib64" got wget successfully compiled. Upon further investigation he found that setting the OPENSSL_CFLAGS and OPENSSL_LIBS conflicted with passing the --with-libssl-prefix="$PACKAGES/openssl" flag.
     113
     114The final changes that Dr Bainbridge made to get openssl and wget to compile up successfully were:
     1151. Remove the flag: --with-libssl-prefix="$PACKAGES/openssl"
     1162. Change
     117   OPENSSL_LIBS="-L$PACKAGES/openssl/lib -lssl -lcrypto"
     118to
     119   OPENSSL_LIBS="-L$PACKAGES/openssl/lib -lssl -lcrypto -lz -ldl"
     120
     121
     122
    110123LINUX CHANGES:
    111124- Grabbed wget-1.17.1.tar.gz from https://ftp.gnu.org/gnu/wget/
Note: See TracChangeset for help on using the changeset viewer.