New Ticket     Tickets     Wiki     Browse Source     Timeline     Roadmap     Ticket Reports     Search

Ticket #26440: patch-wscript.diff

File patch-wscript.diff, 371 bytes (added by tonym@…, 3 years ago)

patch to wscript to fix bug in ./configure --without-ssl . See Portfile for reference.

  • wscript

    old new def configure(conf): 
    187187      if libcrypto and libssl: 
    188188        conf.env["USE_OPENSSL"] = Options.options.use_openssl = True 
    189189        conf.env.append_value("CXXFLAGS", "-DHAVE_OPENSSL=1") 
     190  else: 
     191    Options.options.use_openssl = conf.env["USE_OPENSSL"] = False 
    190192 
    191193  conf.check(lib='rt', uselib_store='RT') 
    192194