File: non-linux

package info (click to toggle)
pymupdf 1.21.1%2Bds1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 13,404 kB
  • sloc: python: 8,737; makefile: 8
file content (23 lines) | stat: -rw-r--r-- 717 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
From: Bastian Germann <bage@debian.org>
Date: Tue, 08 Nov 2022 21:51:22 +0200
Forwarded: not-needed
Subject: Fix shared libs for non-Linux platforms

---
diff --git a/setup.py b/setup.py
index d687d39..f820903 100644
--- a/setup.py
+++ b/setup.py
@@ -710,11 +710,7 @@ if ('-h' not in sys.argv and '--help' not in sys.argv
         else:
             library_dirs.append( f'{mupdf_local}platform/win32/x64/ReleaseTesseract')
             library_dirs.append( f'{mupdf_local}platform/win32/x64/Release')
-        libraries = [
-            "libmupdf",
-            "libresources",
-            "libthirdparty",
-        ]
+        libraries = DEBIAN
         extra_link_args = ["/NODEFAULTLIB:MSVCRT"]
     
     else: