Revision: 619 http://rpy.svn.sourceforge.net/rpy/?rev=619&view=rev Author: lgautier Date: 2008-08-07 15:52:28 +0000 (Thu, 07 Aug 2008)
Log Message: ----------- Get R-specific parameters (fix for MacOSX) Modified Paths: -------------- branches/rpy_nextgen/setup.py Modified: branches/rpy_nextgen/setup.py =================================================================== --- branches/rpy_nextgen/setup.py 2008-08-05 11:00:11 UTC (rev 618) +++ branches/rpy_nextgen/setup.py 2008-08-07 15:52:28 UTC (rev 619) @@ -60,6 +60,9 @@ rconfig = rconfig.strip() rconfig_m = re.match('^(-L.+) (-l.+)$', rconfig) if rconfig_m is None: + # MacOSX + rconfig_m = re.match('^(-F.+) (-framework.+)$', rconfig) + if rconfig_m is None: raise Exception(cmd + '\nreturned\n' + rconfig) return rconfig_m.groups() This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. ------------------------------------------------------------------------- This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip for two to an Open Source event anywhere in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ _______________________________________________ rpy-list mailing list rpy-list@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/rpy-list