0001-ssldir.patch 762 B

1234567891011121314151617
  1. Value is assigned to $with_ssl_dir but used from $with_ssl which is wrong.
  2. Fix configure since it's a one-liner and avoid an autoreconf.
  3. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
  4. diff -Nura tn5250-0.17.4.orig/configure tn5250-0.17.4/configure
  5. --- tn5250-0.17.4.orig/configure 2014-09-10 08:33:15.689519554 -0300
  6. +++ tn5250-0.17.4/configure 2014-09-10 08:33:47.428613117 -0300
  7. @@ -23258,7 +23258,7 @@
  8. if test "${with_ssl_dir+set}" = set; then
  9. withval=$with_ssl_dir;
  10. if test "$with_ssl_dir" != "no"; then
  11. - checksslinclude "$with_ssl"
  12. + checksslinclude "$with_ssl_dir"
  13. else
  14. for topdir in /usr/local /usr /usr/pkg /usr/lib /var/ssl /opt; do
  15. for subdir in $topdir $topdir/openssl $topdir/ssl; do