Changeset 3888 for pjproject/branches/1.x/pjsip-apps/src/python/setup.py
- Timestamp:
- Nov 19, 2011 3:35:48 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/branches/1.x/pjsip-apps/src/python/setup.py
r2394 r3888 22 22 import os 23 23 import sys 24 import platform 24 25 25 26 # find pjsip version … … 59 60 60 61 # Mac OS X depedencies 61 if sys.platform == 'darwin':62 if platform.system() == 'Darwin': 62 63 extra_link_args = ["-framework", "CoreFoundation", 63 64 "-framework", "AudioToolbox"] 65 # OS X Lion support 66 if platform.mac_ver()[0].startswith("10.7"): 67 extra_link_args += ["-framework", "AudioUnit"] 64 68 else: 65 69 extra_link_args = []
Note: See TracChangeset
for help on using the changeset viewer.