diff options
author | John MacFarlane <fiddlosopher@gmail.com> | 2012-03-05 00:23:17 -0800 |
---|---|---|
committer | John MacFarlane <fiddlosopher@gmail.com> | 2012-03-05 00:23:31 -0800 |
commit | b44fec5877ec9bb4801c640e8380b715d82aef2e (patch) | |
tree | c370d56dbb69a590c1ac35b0d1d9afa0b19248fc /windows | |
parent | 053ba29883d7c85b8edf874e4fae733f96913900 (diff) | |
download | pandoc-b44fec5877ec9bb4801c640e8380b715d82aef2e.tar.gz |
Windows installer: require XP or higher.
Trying to run pandoc on Win2K yields:
"addrinfo could not be located in the dynamic link library WS2_32.dll".
This is a function added in XP.
Diffstat (limited to 'windows')
-rw-r--r-- | windows/pandoc-setup.iss | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/windows/pandoc-setup.iss b/windows/pandoc-setup.iss index 41f9bbe2f..c6cf5bce4 100644 --- a/windows/pandoc-setup.iss +++ b/windows/pandoc-setup.iss @@ -6,6 +6,8 @@ ; Do not use the same AppId value in installers for other applications.
; (To generate a new GUID, click Tools | Generate GUID inside the IDE.)
AppId={{3CEE7B38-B19D-4980-9CAD-DF53600BD4CA}
+; Version 5.1 is XP
+MinVersion=5.1,5.1
AppName=Pandoc
AppVerName=Pandoc 1.9.1.1
AppPublisher=John MacFarlane
|