Changeset 0f2c15d in sasview


Ignore:
Timestamp:
Dec 5, 2011 9:06:07 AM (12 years ago)
Author:
Mathieu Doucet <doucetm@…>
Branches:
master, ESS_GUI, ESS_GUI_Docs, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_iss959, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc, costrafo411, magnetic_scatt, release-4.1.1, release-4.1.2, release-4.2.2, release_4.0.1, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
Children:
68dc52c6
Parents:
f9303b6
Message:

Re #5 fixing mac build

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sansview/setup_mac.py

    rbc69dcc r0f2c15d  
    99   12/01/2011: When seeing an error related to pytz.zoneinfo not being found, change the following line in py2app/recipes/matplotlib.py 
    1010               mf.import_hook('pytz.tzinfo', m, ['UTC']) 
     11   12/05/2011: Generally needs a recent version of macholib, modulegraph, and altgraph (through easy_install) on OSX >= 10.6 
    1112""" 
    1213from setuptools import setup 
     
    1920import pytz 
    2021import sys 
     22import platform 
    2123 
    2224ICON = local_config.SetupIconFile_mac 
     
    102104EXCLUDES = ['PyQt4', 'sip', 'QtGui'] 
    103105 
    104 OPTIONS = {'argv_emulation': True, 
     106# Cross-platform applications generally expect sys.argv to 
     107# be used for opening files. This requires argv_emulation = True 
     108argv_emulation = True 
     109# argv_emulation is not supported for 64-bit apps 
     110if platform.architecture()[0] == '64bit': 
     111    argv_emulation = False 
     112 
     113OPTIONS = {'argv_emulation': False, 
    105114           'packages': ['lxml','numpy', 'scipy', 'pytz', 'encodings'], 
    106115           'iconfile': ICON, 
Note: See TracChangeset for help on using the changeset viewer.