blob: 1457ddcd3dfdd0f9cea723b3c1780bbecbe639c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
diff -ruN pyevent-0.3.pris/setup.py pyevent-0.3/setup.py
--- pyevent-0.3.pris/setup.py 2005-09-11 22:44:04.000000000 -0500
+++ pyevent-0.3/setup.py 2007-04-23 11:17:14.500323500 -0500
@@ -5,9 +5,13 @@
from distutils.core import setup, Extension
import glob, os, sys
-if glob.glob('/usr/lib/libevent.*'):
- print 'found system libevent for', sys.platform
- event = Extension(name='event',
+# Where to find libevent
+libevent_location = os.environ.get('LIBEVENT_HOME')
+
+if libevent_location != None:
+ if glob.glob('%s/libevent.*' % (libevent_location,)):
+ print 'found system libevent for', sys.platform
+ event = Extension(name='event',
sources=[ 'event.c' ],
libraries=[ 'event' ])
elif glob.glob('%s/lib/libevent.*' % sys.prefix):
|