pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/net/libfetch/files



Module Name:    pkgsrc
Committed By:   tnn
Date:           Mon Apr 28 18:48:36 UTC 2025

Modified Files:
        pkgsrc/net/libfetch/files: http.c

Log Message:
libfetch: needs xlocale.h with latest xcode on macOS


To generate a diff of this commit:
cvs rdiff -u -r1.43 -r1.44 pkgsrc/net/libfetch/files/http.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/net/libfetch/files/http.c
diff -u pkgsrc/net/libfetch/files/http.c:1.43 pkgsrc/net/libfetch/files/http.c:1.44
--- pkgsrc/net/libfetch/files/http.c:1.43       Tue Feb 18 12:59:54 2025
+++ pkgsrc/net/libfetch/files/http.c    Mon Apr 28 18:48:36 2025
@@ -1,4 +1,4 @@
-/*     $NetBSD: http.c,v 1.43 2025/02/18 12:59:54 wiz Exp $    */
+/*     $NetBSD: http.c,v 1.44 2025/04/28 18:48:36 tnn Exp $    */
 /*-
  * Copyright (c) 2000-2004 Dag-Erling Co�dan Sm�rgrav
  * Copyright (c) 2003 Thomas Klausner <wiz%NetBSD.org@localhost>
@@ -97,6 +97,9 @@
 #include <stdlib.h>
 #include <string.h>
 #include <time.h>
+#if defined(__APPLE__)
+#include <xlocale.h>   /* for strptime_l */
+#endif
 #include <unistd.h>
 
 #include <netinet/in.h>



Home | Main Index | Thread Index | Old Index