diff options
author | John Marino <marino@FreeBSD.org> | 2014-09-24 21:38:28 +0800 |
---|---|---|
committer | John Marino <marino@FreeBSD.org> | 2014-09-24 21:38:28 +0800 |
commit | 418d031d6b6f7bfe9c56f93a97c6be1d60bba5a4 (patch) | |
tree | b943c43bc0c49d3774a548339adeb9d827e72901 /astro/xtide/Makefile | |
parent | e90fb1d3dc6c643eb2127f92b2bbc0c107d36809 (diff) | |
download | freebsd-ports-gnome-418d031d6b6f7bfe9c56f93a97c6be1d60bba5a4.tar.gz freebsd-ports-gnome-418d031d6b6f7bfe9c56f93a97c6be1d60bba5a4.tar.zst freebsd-ports-gnome-418d031d6b6f7bfe9c56f93a97c6be1d60bba5a4.zip |
astro/xtide: Add support for non-ports GCC
This port requires GCC, so it loads the lang/gcc. The ports GCC will
look in /usr/local/include by default, but others (such as DF base
compiler) will not. Specify -I${LOCALBASE}/include in CFLAGS explicitly
as it is needed to locate the X11/Xaw/Box.h header. This is covered by
"Just Fix It" blanket.
Diffstat (limited to 'astro/xtide/Makefile')
-rw-r--r-- | astro/xtide/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/astro/xtide/Makefile b/astro/xtide/Makefile index 6479b5d43552..020461bad10e 100644 --- a/astro/xtide/Makefile +++ b/astro/xtide/Makefile @@ -49,6 +49,7 @@ PLIST_SUB+= X11="@comment " .else USE_XORG+= xpm xaw PLIST_SUB+= X11="" +CFLAGS+= -I${LOCALBASE}/include .endif post-extract: |