freebsd-ports/x11/XFree86-4-libraries/files/patch-t01
Maxim Sobolev 045d1253be 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
2002-05-22 14:29:17 +00:00

34 lines
1,007 B
Text

$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", "");
+# ifdef __FreeBSD__
+ /* Hack for FreeBSD ports "Cross Version" compiling system. */
+ {
+ char *e;
+ if ((e = getenv("OSREL")) != NULL &&
+ strlen(name.sysname) + strlen(e) + 1 < SYS_NMLN) {
+ strcpy(name.release, e);
+ strcpy(name.version, name.sysname);
+ strcat(name.version, " ");
+ strcat(name.version, e);
+ }
+ }
+# endif
# ifdef DEFAULT_OS_NAME
parse_utsname(&name, DEFAULT_OS_NAME, buf,
"Bad DEFAULT_OS_NAME syntax %s");