Skip to content

Commit a2886d8

Browse files
committed
updated setup for agg21
svn path=/trunk/matplotlib/; revision=411
1 parent da5e83c commit a2886d8

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

MANIFEST.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ recursive-include examples README *.py *.glade
1313
prune examples/_tmp_*
1414
recursive-include src *.cpp *.c *.h
1515
recursive-include CXX *.cxx *.hxx *.c
16-
recursive-include agg21 *.cpp *.c *.h
16+
recursive-include agg2 *.cpp *.c *.h

setupext.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ def add_agg_flags(module):
8383
module.libraries.append('png')
8484
module.libraries.append('z')
8585
add_base_flags(module)
86-
module.include_dirs.extend(['src','agg21/include', '.'])
86+
module.include_dirs.extend(['src','agg2/include', '.'])
8787

8888
# put these later for correct link order
8989
module.libraries.extend(['stdc++', 'm'])
@@ -304,7 +304,7 @@ def build_agg(ext_modules, packages):
304304
if BUILT_AGG: return # only build it if you you haven't already
305305

306306
deps = ['src/_backend_agg.cpp', 'src/ft2font.cpp', 'src/mplutils.cpp']
307-
deps.extend(glob.glob('agg21/src/*.cpp'))
307+
deps.extend(glob.glob('agg2/src/*.cpp'))
308308
deps.extend(glob.glob('CXX/*.cxx'))
309309
deps.extend(glob.glob('CXX/*.c'))
310310

@@ -324,7 +324,7 @@ def build_image(ext_modules, packages, numerix):
324324
if BUILT_IMAGE: return # only build it if you you haven't already
325325

326326
deps = ['src/_image.cpp', 'src/mplutils.cpp']
327-
deps.extend(glob.glob('agg21/src/*.cpp'))
327+
deps.extend(glob.glob('agg2/src/*.cpp'))
328328
deps.extend(glob.glob('CXX/*.cxx'))
329329
deps.extend(glob.glob('CXX/*.c'))
330330

0 commit comments

Comments
 (0)