Skip to content

Commit

Permalink
python3 should have a recent enough version of cx_Freeze to not need …
Browse files Browse the repository at this point in the history
…this workaround, the sqlite3.dll file placed in the hard-coded location is for python2 anyway

git-svn-id: https://xpra.org/svn/Xpra/trunk@16978 3bb7dfac-3a0b-4e04-842a-767bc560f471
  • Loading branch information
totaam committed Sep 29, 2017
1 parent fdfdeac commit 329873f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -1182,7 +1182,7 @@ def do_add_DLLs(*dll_names):
if opengl_ENABLED:
add_gi("GdkGLExt-3.0", "GtkGLExt-3.0", "GL-1.0")
add_DLLs('visual', 'curl', 'soup', 'openjpeg')
if gtk3_ENABLED or server_ENABLED:
if server_ENABLED and not PYTHON3:
add_DLLs('sqlite3')

if gtk2_ENABLED:
Expand Down

0 comments on commit 329873f

Please sign in to comment.