Author: andar
Revision: 5218
Log:
Use directories listed in INCLUDEDIRS
Diff:
Modified: trunk/setup.py
===================================================================
--- trunk/setup.py 2009-04-30 07:13:23 UTC (rev 5217)
+++ trunk/setup.py 2009-04-30 16:15:09 UTC (rev 5218)
@@ -134,6 +134,9 @@
'/usr/include/python' + python_version,
sysconfig.get_config_var("INCLUDEDIR")
]
+ for include in os.environ["INCLUDEDIR"].split(":"):
+ _include_dirs.append(include)
+
_library_dirs += [sysconfig.get_config_var("LIBDIR"), '/opt/local/lib']
if osx_check():
_include_dirs += [
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"deluge-commit" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/deluge-commit?hl=en
-~----------~----~----~----~------~----~------~--~---