diff options
Diffstat (limited to 'pow')
-rw-r--r-- | pow/Makefile | 3 | ||||
-rw-r--r-- | pow/POW-0.7/setup.py | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/pow/Makefile b/pow/Makefile index 96e37de3..1d55552a 100644 --- a/pow/Makefile +++ b/pow/Makefile @@ -16,10 +16,11 @@ all: ${STAMP} ${STAMP}: ${SOURCES} cd POW-${VERSION}; python setup.py build + ln -sf POW-${VERSION}/build/lib.* buildlib touch $@ clean: - rm -rf POW-${VERSION}/build + rm -rf POW-${VERSION}/build buildlib install: @echo Not attempting to install modified POW, if you want that, do it yourself diff --git a/pow/POW-0.7/setup.py b/pow/POW-0.7/setup.py index 37b7ba61..240a1a31 100644 --- a/pow/POW-0.7/setup.py +++ b/pow/POW-0.7/setup.py @@ -13,7 +13,7 @@ oidinfo.dumpobjs('lib/_objects.py') print 'writing oid module' oidinfo.dumpoids('lib/_oids.py') -library_dirs = [ "../../openssl/openssl-0.9.8f" ] +library_dirs = [ "../../openssl/openssl-0.9.8g" ] include_dirs = [ library_dirs[0] + "/include" ] libraries = [ "ssl", "crypto" ] |