mirror of
https://git.freebsd.org/ports.git
synced 2025-06-09 14:50:31 -04:00
20 lines
466 B
Text
20 lines
466 B
Text
--- /tmp/wcwidth.c.orig Fri Oct 25 21:05:46 2002
|
|
+++ libgale/wcwidth.c Fri Oct 25 21:05:51 2002
|
|
@@ -6,10 +6,16 @@
|
|
* Markus Kuhn -- 2000-02-08 -- public domain
|
|
*/
|
|
|
|
-#ifdef __FreeBSD__ /* peterh@sapros.com */
|
|
+#ifdef __FreeBSD__
|
|
+#include <osreldate.h>
|
|
+#if __FreeBSD_version >= 500000
|
|
+#include <wchar.h>
|
|
+#else
|
|
#include <rune.h>
|
|
#endif
|
|
+#else
|
|
#include <wchar.h>
|
|
+#endif
|
|
|
|
/* These functions define the column width of an ISO 10646 character
|
|
* as follows:
|