X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/0a67b75186e7339104f904883d6049a2bbcfe364..a47391f3f9cceb68fb65cdf2bfef7f98a308fd23:/wxPython/setup.py diff --git a/wxPython/setup.py b/wxPython/setup.py index 56b3d2c037..cd5aac2069 100755 --- a/wxPython/setup.py +++ b/wxPython/setup.py @@ -329,7 +329,7 @@ def makeLibName(name): def adjustCFLAGS(cflags, defines, includes): - '''Extrace the raw -I, -D, and -U flags and put them into + '''Extract the raw -I, -D, and -U flags and put them into defines and includes as needed.''' newCFLAGS = [] for flag in cflags: @@ -350,7 +350,7 @@ def adjustCFLAGS(cflags, defines, includes): def adjustLFLAGS(lfags, libdirs, libs): - '''Extrace the -L and -l flags and put them in libdirs and libs as needed''' + '''Extract the -L and -l flags and put them in libdirs and libs as needed''' newLFLAGS = [] for flag in lflags: if flag[:2] == '-L': @@ -402,7 +402,7 @@ if os.name == 'nt': GENDIR = 'msw' includes = ['src', - opj(WXDIR, 'lib', 'vc_msw' + libFlag() + 'dll'), + opj(WXDIR, 'lib', 'vc_dll', 'msw' + libFlag()), opj(WXDIR, 'include'), opj(WXDIR, 'contrib', 'include'), ] @@ -425,7 +425,7 @@ if os.name == 'nt': if not FINAL or HYBRID: defines.append( ('__WXDEBUG__', None) ) - libdirs = [ opj(WXDIR, 'lib', 'vc_msw' + libFlag() + 'dll') ] + libdirs = [ opj(WXDIR, 'lib', 'vc_dll') ] libs = [ 'wxbase' + WXDLLVER + libFlag(), # TODO: trim this down to what is really needed for the core 'wxbase' + WXDLLVER + libFlag() + '_net', 'wxbase' + WXDLLVER + libFlag() + '_xml',