Skip to content

Commit

Permalink
Updated setup.py to support MacPorts
Browse files Browse the repository at this point in the history
  • Loading branch information
jlopez committed Jul 14, 2011
1 parent b2026ab commit 2fd74fb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -3,8 +3,8 @@
module1 = Extension('GeoIP',
libraries = ['GeoIP'],
sources = ['py_GeoIP.c'],
library_dirs = ['/usr/local/lib'],
include_dirs = ['/usr/local/include'])
library_dirs = ['/opt/local/lib', '/usr/local/lib'],
include_dirs = ['/opt/local/include', '/usr/local/include'])

setup (name = 'GeoIP-Python',
version = '1.2.4',
Expand Down

0 comments on commit 2fd74fb

Please sign in to comment.