8000 Pull Request Suggestion for #4062 by beachdweller · Pull Request #4094 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

Pull Request Suggestion for #4062 #4094

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
revised analysis : check_include_file(), has_include_file()
  • Loading branch information
kangwonlee committed Feb 10, 2015
commit f7d4604357bbc18547323c683eaf7de2ab736054
13 changes: 13 additions & 0 deletions readme_4062.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,16 @@ Analysis on existing commit(master 8f10470):
+++ _check_for_pkg_config() returns result from check_include_file()

++++ check_include_file() searches for include files within paths in ext.include_dirs
++++ check_include_file() calls has_include_file(include_dirs, filename)
+++++ has_include_file(include_dirs, filename) searches for following files
/usr/local/include/ft2build.h
/usr/include/ft2build.h
/usr/X11/include/ft2build.h
/opt/X11/include/ft2build.h
./ft2build.h
+++++ possible locations are
/opt/X11/include/freetype2
/usr/local/include/freetype2

++ Hence, it could be more desirable if FreeType get_extension() could return
an ext object with include_dirs information about paths above
0