diff options
author | Cory Fields <cory-nospam-@coryfields.com> | 2013-12-02 20:16:45 -0500 |
---|---|---|
committer | Cory Fields <cory-nospam-@coryfields.com> | 2014-01-10 16:30:33 -0500 |
commit | 2691cbc4b3c97a468b23f2c11dbe992dfb3f8bcb (patch) | |
tree | 8af085cfc2051ca0656c9fd04c23b4a2df7e1b2e /configure.ac | |
parent | 8b0f608815aa3de43208d4ac334a11bc4c408167 (diff) |
qt5: Force macports default include path to be searched last
Allows outside includes to take precedence. In particular, this allows for
a specified Qt to be used without clashing with macports' headers.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 3c7d4db4af..11a9a3118e 100644 --- a/configure.ac +++ b/configure.ac @@ -191,7 +191,7 @@ case $host in AC_CHECK_PROG([PORT],port, port) if test x$PORT = xport; then dnl add default macports paths - CPPFLAGS="$CPPFLAGS -I/opt/local/include -I/opt/local/include/db48" + CPPFLAGS="$CPPFLAGS -isystem /opt/local/include -I/opt/local/include/db48" LIBS="$LIBS -L/opt/local/lib -L/opt/local/lib/db48" fi |