aboutsummaryrefslogtreecommitdiff
path: root/pow/build.py
diff options
context:
space:
mode:
authorRob Austein <sra@hactrn.net>2011-01-20 00:25:27 +0000
committerRob Austein <sra@hactrn.net>2011-01-20 00:25:27 +0000
commit0fb7ecdb829e5941ecfadc06812e1c4a51f18d1e (patch)
tree1e5225d05d2812242c0b6bd41f67e6ec70cf343f /pow/build.py
parent4b77848f92101ba05ac564dc3f91f3600661423f (diff)
Move POW extension module into rpkid directory and use distutils to
build it. svn path=/configure; revision=3610
Diffstat (limited to 'pow/build.py')
-rw-r--r--pow/build.py53
1 files changed, 0 insertions, 53 deletions
diff --git a/pow/build.py b/pow/build.py
deleted file mode 100644
index 87f99db9..00000000
--- a/pow/build.py
+++ /dev/null
@@ -1,53 +0,0 @@
-"""
-Hack to build our Python extension module.
-
-In a sane world, we'd just use the excellent distutils package, which
-would do all the work for us. But we have this little problem of
-sometimes needing to use a private copy of the OpenSSL libraries to
-kludge around obsolete system libraries, and a further problem that
-GNU ld has bizzare issues with linking static libraries into shared
-objects on 64-bit platforms.
-
-In the long term, this problem will go away, when everybody updates to
-a reasonable version of OpenSSL with CMS and RFC 3779 support enabled.
-When that happens, this whackiness should be replaced by a normal
-setup.py using distutils.
-
-In the meantime, we pull config information from distutils, but do the
-build ourselves.
-
-This is a minimal hack to get the job done, and probably a bit
-fragile. Much of the code is taken from python-config and the
-distutils.sysconfig.customize_compiler. If there's any real
-documentation on how to do this sort of thing, I have not found it
-yet. YMMV. Beware Of Dog.
-
-$Id$
-"""
-
-import os, subprocess, sys
-
-from distutils.sysconfig import (get_config_var as getvar,
- get_python_inc as getinc)
-
-cmd = getvar("CC").split()
-cmd.extend(("-c", "-o", "POW.o", "POW.c"))
-cmd.extend(os.environ["AC_CFLAGS"].split())
-cmd.append("-I%s" % getinc(plat_specific = False))
-cmd.append("-I%s" % getinc(plat_specific = True))
-cmd.extend(getvar("CFLAGS").split())
-cmd.extend(getvar("CCSHARED").split())
-print " ".join(cmd)
-r = subprocess.call(cmd)
-if r:
- sys.exit(r)
-
-cmd = getvar("LDSHARED").split()
-cmd.extend(("-o", "../rpkid/rpki/POW/_POW.so", "POW.o"))
-cmd.extend(os.environ["AC_LDFLAGS"].split())
-cmd.extend(getvar("LDFLAGS").split())
-cmd.extend(os.environ["AC_LIBS"].split())
-print " ".join(cmd)
-r = subprocess.call(cmd)
-if r:
- sys.exit(r)