diff options
author | Tony Theodore <tonyt@logyst.com> | 2018-03-03 06:08:26 (GMT) |
---|---|---|
committer | Tony Theodore <tonyt@logyst.com> | 2018-03-06 10:31:04 (GMT) |
commit | ac2cb10d3fb31f347a1c9de732eca3ebbf7287ff (patch) | |
tree | 9ed36819841516205c56411ee96d354beb28350b /src/dcmtk.mk | |
parent | 9652e2c68fb630c0ec3f1110abf34d4f3a2beff2 (diff) | |
download | mxe-ac2cb10d3fb31f347a1c9de732eca3ebbf7287ff.zip mxe-ac2cb10d3fb31f347a1c9de732eca3ebbf7287ff.tar.gz mxe-ac2cb10d3fb31f347a1c9de732eca3ebbf7287ff.tar.bz2 |
dcmtk vmime: add example of enabling openssl v1.0.x support
Diffstat (limited to 'src/dcmtk.mk')
-rw-r--r-- | src/dcmtk.mk | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/dcmtk.mk b/src/dcmtk.mk index 9578209..8bcd599 100644 --- a/src/dcmtk.mk +++ b/src/dcmtk.mk @@ -20,6 +20,7 @@ endef # openssl 1.1 breaks build and newer version switched to cmake with # build that requires wine - disable openssl for now +# see plugins/examples/openssl1.0 for example of re-enabling support define $(PKG)_BUILD cd '$(1)'/config && autoconf -f cd '$(1)' && ./configure \ @@ -37,7 +38,8 @@ define $(PKG)_BUILD AR='$(TARGET)-ar' \ ARFLAGS=cru \ LIBTOOL=$(LIBTOOL) \ - ac_cv_my_c_rightshift_unsigned=no + ac_cv_my_c_rightshift_unsigned=no \ + $($(PKG)_CONFIGURE_OPTS) $(MAKE) -C '$(1)' -j '$(JOBS)' install-lib endef |