mirror of
https://git.freebsd.org/ports.git
synced 2025-06-27 23:50:30 -04:00
For the most part this is just to track upstream for FreeBSD. In particular 10.2.0 introduced a regression whereby UFS support was dropped. The fix was backported to the FreeBSD port of 10.2.0 in lieu of waiting for 10.2.5 to be released. PR: 227124 Submitted by: John Wolfe <jwolfe@vmware.com>
11 lines
409 B
C
11 lines
409 B
C
--- lib/misc/util_misc.c.orig 2018-03-30 18:44:35 UTC
|
|
+++ lib/misc/util_misc.c
|
|
@@ -303,7 +303,7 @@ Util_CanonicalPathsIdentical(const char *path1, // IN
|
|
return (strcmp(path1, path2) == 0);
|
|
#elif defined(_WIN32)
|
|
return (_stricmp(path1, path2) == 0);
|
|
-#elif defined(__APPLE__)
|
|
+#elif defined(__APPLE__) || defined(__FreeBSD__)
|
|
return (strcasecmp(path1, path2) == 0);
|
|
#else
|
|
NOT_IMPLEMENTED();
|