diff options
author | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2011-10-05 10:07:37 +0000 |
---|---|---|
committer | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2011-10-05 10:07:37 +0000 |
commit | bdee9e2c5b480e1c289482df52fffec34a4edae0 (patch) | |
tree | 590ae218f3606f793212b4b888488cb208a367bd | |
parent | 994a922c1d18880debfc51d785aa1a78c8db73fc (diff) |
check for Pd-headers in /usr(/local)?/include/pd/
svn path=/trunk/externals/pdp/; revision=15512
-rw-r--r-- | configure.ac | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index cd3c84c..1bb4142 100644 --- a/configure.ac +++ b/configure.ac @@ -96,6 +96,12 @@ then elif test -f $PWD/../src/m_pd.h; then PD_CPPFLAGS="-I$PWD/../src" +elif test -f /usr/local/include/pd/m_pd.h; +then + PD_CPPFLAGS="-I/usr/local/include/pd" +elif test -f /usr/include/pd/m_pd.h; +then + PD_CPPFLAGS="-I/usr/include/pd" fi |