Skip to content

Commit

Permalink
(doh) fixup r9070: remove prefix from libnames
Browse files Browse the repository at this point in the history
git-svn-id: https://xpra.org/svn/Xpra/trunk@9071 3bb7dfac-3a0b-4e04-842a-767bc560f471
  • Loading branch information
totaam committed Apr 20, 2015
1 parent 3a34ef7 commit de97f85
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions src/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -1098,7 +1098,7 @@ def add_DLLs(*dll_names):
#(ie: "libatk-1.0-0.dll" -> "atk")
add_DLLs('atk', 'cairo-gobject',
'dbus', 'dbus-glib', 'gdk', 'gdk_pixbuf',
'libjasper', 'libjavascriptcoregtk',
'jasper', 'javascriptcoregtk',
'gdkglext', 'gio', 'girepository', 'glib',
'gnutls', 'gobject', 'gthread',
'gtk', 'gtkglext', 'harfbuzz-gobject',
Expand Down Expand Up @@ -1275,7 +1275,7 @@ def add_gui_exe(*args):
})
add_data_files('Microsoft.VC90.CRT', glob.glob(C_DLLs+'Microsoft.VC90.CRT\\*.*'))
add_data_files('Microsoft.VC90.MFC', glob.glob(C_DLLs+'Microsoft.VC90.MFC\\*.*'))
if webp_ENABLED:
if webp_ENABLED and not PYTHON3:
#add the webp DLL to the output:
#And since 0.2.1, you have to compile the DLL yourself..
#the path after installing may look like this:
Expand Down Expand Up @@ -1419,9 +1419,12 @@ def add_keywords(path_dirs=[], inc_dirs=[], lib_dirs=[], libs=[], noref=True, no
[vpx_lib_dir],
vpx_lib_names, nocmt=True)
elif "webp" in pkgs_options[0]:
add_keywords([webp_bin_dir], [webp_include_dir],
[webp_lib_dir],
webp_lib_names, nocmt=True)
if PYTHON3:
pass
else:
add_keywords([webp_bin_dir], [webp_include_dir],
[webp_lib_dir],
webp_lib_names, nocmt=True)
elif ("nvenc3" in pkgs_options[0]) or ("nvenc4" in pkgs_options[0]) or ("nvenc5" in pkgs_options[0]):
add_keywords([nvenc_bin_dir, cuda_bin_dir], [nvenc_include_dir, nvenc_core_include_dir, cuda_include_dir],
[cuda_lib_dir],
Expand Down

0 comments on commit de97f85

Please sign in to comment.