mirror of
https://git.freebsd.org/ports.git
synced 2025-06-01 02:46:27 -04:00
- Move to new home on pagure.org, fedorahosted.org is gone. [1] While here - Update WWW - Take maintainership. The current maintainer has not responded for over a year. - Remove USES=autoreconf. It was added in ports r372261 for patching in fmemopen() support but hasn't been needed anymore since ports r395775 which dropped FreeBSD 8.x support. - Remove bogus USES=gettext. This port only wants to link with libintl, so only gettext-runtime is required. - Fix license. Some files are LGPL3+ others are GPLv3+. - Add test target - Do not build static libraries Changes: https://pagure.io/SSSD/ding-libs/commits/master PR: 218098 [1] Reported by: asomers [1] Submitted by: w.schwarzenfeld@utanet.at [1]
11 lines
422 B
C
11 lines
422 B
C
--- path_utils/path_utils_ut.c.orig 2018-05-29 08:04:46 UTC
|
|
+++ path_utils/path_utils_ut.c
|
|
@@ -62,7 +62,7 @@ START_TEST(test_dirname)
|
|
fail_unless_str_equal(p, "//foo");
|
|
|
|
fail_unless(get_dirname(p, PATH_MAX, "//foo//") == SUCCESS);
|
|
- fail_unless_str_equal(p, "//");
|
|
+ fail_unless_str_equal(p, "/");
|
|
|
|
fail_unless(get_dirname(p, PATH_MAX, "foo//bar") == SUCCESS);
|
|
fail_unless_str_equal(p, "foo");
|