/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Robert Collins
  • Date: 2008-09-27 22:58:34 UTC
  • mfrom: (3748 +trunk)
  • mto: This revision was merged to the branch mainline in revision 3749.
  • Revision ID: robertc@robertcollins.net-20080927225834-030vklra0bu3f0bc
Resolve NEWS.

Show diffs side-by-side

added added

removed removed

Lines of Context:
226
226
 
227
227
 
228
228
add_pyrex_extension('bzrlib._btree_serializer_c')
229
 
add_pyrex_extension('bzrlib._dirstate_helpers_c')
230
229
add_pyrex_extension('bzrlib._knit_load_data_c')
231
230
if sys.platform == 'win32':
 
231
    add_pyrex_extension('bzrlib._dirstate_helpers_c',
 
232
                         libraries=['Ws2_32']
 
233
                       )
232
234
    # pyrex uses the macro WIN32 to detect the platform, even though it should
233
235
    # be using something like _WIN32 or MS_WINDOWS, oh well, we can give it the
234
236
    # right value.
235
237
    add_pyrex_extension('bzrlib._walkdirs_win32',
236
238
                        define_macros=[('WIN32', None)])
237
239
else:
 
240
    add_pyrex_extension('bzrlib._dirstate_helpers_c')
238
241
    add_pyrex_extension('bzrlib._readdir_pyx')
239
242
ext_modules.append(Extension('bzrlib._patiencediff_c', ['bzrlib/_patiencediff_c.c']))
240
243