mirror of
https://git.freebsd.org/ports.git
synced 2025-06-06 13:20:32 -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
508 B
C
11 lines
508 B
C
--- ini/ini_save_ut.c.orig 2018-05-29 07:31:23 UTC
|
|
+++ ini/ini_save_ut.c
|
|
@@ -180,7 +180,7 @@ static int basic_test(void)
|
|
(srcdir == NULL) ? "." : srcdir,
|
|
cmp_files[i]);
|
|
|
|
- snprintf(command, PATH_MAX * 3, "cmp -l -b %s %s", resname, cmpname);
|
|
+ snprintf(command, PATH_MAX * 3, "cmp -l %s %s", resname, cmpname);
|
|
error = system(command);
|
|
if ((error) || (WEXITSTATUS(error))) {
|
|
printf("Failed to compare files %d %d.\n", error,
|