diff options
author | Maxim Sobolev <sobomax@FreeBSD.org> | 2002-05-22 14:29:17 +0000 |
---|---|---|
committer | Maxim Sobolev <sobomax@FreeBSD.org> | 2002-05-22 14:29:17 +0000 |
commit | 045d1253beb189b23ac0fd6dcfaa8d38ddfa1345 (patch) | |
tree | 0ba82c7db8337ba76f7ff4ff767749af6d4ccef7 /x11/XFree86-4-libraries | |
parent | 8e56757b5f70c7653005d4f3c42bf14ffe145934 (diff) | |
download | ports-045d1253beb189b23ac0fd6dcfaa8d38ddfa1345.tar.gz ports-045d1253beb189b23ac0fd6dcfaa8d38ddfa1345.zip |
imake(1) thinks that the first place where to look for a compiler on FreeBSD
is /usr/local/bin/gcc, which simply is not true. Correct it. Bump
PORTREVISION for imake-4 port (XFree86-4-libraries isn't bumped because this
port doesn't install its own imake binary, but builds it for internal
consumption only).
No reply from: MAINTAINERs
Notes
Notes:
svn path=/head/; revision=59702
Diffstat (limited to 'x11/XFree86-4-libraries')
-rw-r--r-- | x11/XFree86-4-libraries/files/patch-t01 | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/x11/XFree86-4-libraries/files/patch-t01 b/x11/XFree86-4-libraries/files/patch-t01 index dc971232b5fb..227a9671b3fc 100644 --- a/x11/XFree86-4-libraries/files/patch-t01 +++ b/x11/XFree86-4-libraries/files/patch-t01 @@ -1,6 +1,18 @@ ---- config/imake/imake.c.ORIG Mon Dec 18 14:54:34 2000 -+++ config/imake/imake.c Mon Dec 18 14:55:25 2000 -@@ -1208,6 +1208,19 @@ + +$FreeBSD$ + +--- config/imake/imake.c.orig Fri Dec 14 21:53:18 2001 ++++ config/imake/imake.c Sat May 11 03:03:51 2002 +@@ -1161,7 +1161,7 @@ + get_gcc_incdir(FILE *inFile) + { + static char* gcc_path[] = { +-#if defined(linux) || defined(__OpenBSD__) || defined (__GNU__) ++#if defined(linux) || defined(__OpenBSD__) || defined (__GNU__) || defined(__FreeBSD__) + "/usr/bin/cc", /* for Linux PostIncDir */ + #endif + "/usr/local/bin/gcc", +@@ -1207,6 +1207,19 @@ if (uname(&name) < 0) LogFatal("Cannot invoke uname", ""); |