From 8f8e94322d5cc65add4dbd4c3b9b2c09a0b855ee Mon Sep 17 00:00:00 2001 From: Werner Koch Date: Wed, 19 Nov 2014 10:34:32 +0100 Subject: [PATCH] speedo: Add libadns to the Windows installer. -- --- build-aux/speedo/w32/inst.nsi | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/build-aux/speedo/w32/inst.nsi b/build-aux/speedo/w32/inst.nsi index aeab7a0c8..101e6d12e 100644 --- a/build-aux/speedo/w32/inst.nsi +++ b/build-aux/speedo/w32/inst.nsi @@ -612,6 +612,15 @@ Section "-zlib" SEC_zlib File bin/zlib1.dll SectionEnd +Section "-adns" SEC_adns + SetOutPath "$INSTDIR\bin" + File bin/libadns-1.dll + SetOutPath "$INSTDIR\lib" + File /oname=libadns.imp lib/libadns.dll.a + SetOutPath "$INSTDIR\include" + File include/adns.h +SectionEnd + Section "-npth" SEC_npth SetOutPath "$INSTDIR\bin" File bin/libnpth-0.dll @@ -1037,6 +1046,12 @@ Section "-un.npth" Delete "$INSTDIR\include\npth.h" SectionEnd +Section "-un.adns" + Delete "$INSTDIR\bin\libadns-1.dll" + Delete "$INSTDIR\lib\libadns.imp" + Delete "$INSTDIR\include\adns.h" +SectionEnd + Section "-un.zlib" Delete "$INSTDIR\bin\zlib1.dll" SectionEnd