mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-09-07 11:20:04 -04:00
18 lines
542 B
Plaintext
18 lines
542 B
Plaintext
$NetBSD: patch-af,v 1.3 2013/01/21 08:58:44 adam Exp $
|
|
|
|
* Portability: include <bstring.h> if exists.
|
|
|
|
--- client/sql_string.cc.orig 2010-02-04 11:36:53.000000000 +0000
|
|
+++ client/sql_string.cc
|
|
@@ -39,6 +39,10 @@ extern void sql_element_free(void *ptr);
|
|
|
|
#include "sql_string.h"
|
|
|
|
+#ifdef NEEDS_BSTRING_H
|
|
+#include <bstring.h> /* defines bzero() */
|
|
+#endif
|
|
+
|
|
/*****************************************************************************
|
|
** String functions
|
|
*****************************************************************************/
|