From 5d732201ae2c910ebd00a882d33d70bc47056662 Mon Sep 17 00:00:00 2001 From: PJ Eby Date: Fri, 6 Jan 2006 19:57:36 +0000 Subject: SharedLibrary -> Library. For now, Windows libs get built as shared, and other platforms get static. :( --HG-- branch : setuptools extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041941 --- tests/shlib_test/setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/shlib_test/setup.py') diff --git a/tests/shlib_test/setup.py b/tests/shlib_test/setup.py index 122de77c..b0c93996 100755 --- a/tests/shlib_test/setup.py +++ b/tests/shlib_test/setup.py @@ -1,9 +1,9 @@ -from setuptools import setup, Extension, SharedLibrary +from setuptools import setup, Extension, Library setup( name="shlib_test", ext_modules = [ - SharedLibrary("hellolib", ["hellolib.c"]), + Library("hellolib", ["hellolib.c"]), Extension("hello", ["hello.pyx"], libraries=["hellolib"]) ], test_suite="test_hello.HelloWorldTest", -- cgit v1.2.3