diff options
Diffstat (limited to 'x11-servers/xorg-server/files/patch-imake.c')
-rw-r--r-- | x11-servers/xorg-server/files/patch-imake.c | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/x11-servers/xorg-server/files/patch-imake.c b/x11-servers/xorg-server/files/patch-imake.c new file mode 100644 index 000000000000..b0db655d28c5 --- /dev/null +++ b/x11-servers/xorg-server/files/patch-imake.c @@ -0,0 +1,38 @@ +--- config/imake/imake.c.orig Thu Feb 22 11:53:58 2007 ++++ config/imake/imake.c Thu Feb 22 11:56:06 2007 +@@ -1150,34 +1150,7 @@ + static void + get_binary_format(FILE *inFile) + { +- int mib[2]; +- size_t len; +- int osrel = 0; +- FILE *objprog = NULL; +- int iself = 0; +- char buf[10]; +- char cmd[PATH_MAX]; +- +- mib[0] = CTL_KERN; +- mib[1] = KERN_OSRELDATE; +- len = sizeof(osrel); +- sysctl(mib, 2, &osrel, &len, NULL, 0); +- if (CrossCompiling) { +- strcpy (cmd, CrossCompileDir); +- strcat (cmd, "/"); +- strcat (cmd,"objformat"); +- } else +- strcpy (cmd, "objformat"); +- +- if (osrel >= 300004 && +- (objprog = popen(cmd, "r")) != NULL && +- fgets(buf, sizeof(buf), objprog) != NULL && +- strncmp(buf, "elf", 3) == 0) +- iself = 1; +- if (objprog) +- pclose(objprog); +- +- fprintf(inFile, "#define DefaultToElfFormat %s\n", iself ? "YES" : "NO"); ++ fprintf(inFile, "#define DefaultToElfFormat YES\n"); + } + #endif + |