Browse Source

Add patch to fix win32 pyliblo builds

Signed-off-by: falkTX <falktx@falktx.com>
tags/v1.1
falkTX 4 years ago
parent
commit
c31e9f82dc
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
1 changed files with 13 additions and 0 deletions
  1. +13
    -0
      patches/pyliblo/common/02_win32-build-fix.patch

+ 13
- 0
patches/pyliblo/common/02_win32-build-fix.patch View File

@@ -0,0 +1,13 @@
diff --git a/setup.py b/setup.py
index fae6090..c5a5b35 100755
--- a/setup.py
+++ b/setup.py
@@ -46,7 +46,7 @@ ext_modules = [
'-Werror-implicit-function-declaration',
'-Wfatal-errors',
],
- libraries = ['lo']
+ libraries = ['lo', 'ws2_32', 'iphlpapi']
)
]

Loading…
Cancel
Save