aboutsummaryrefslogtreecommitdiff
path: root/TODO
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2017-09-06 17:40:06 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2017-09-11 13:58:25 +0300
commit4beec8f055fd3b0cc4ef618cce8b52c58dd0ee08 (patch)
tree08dc183e96625ef8b2068432154851e014047d89 /TODO
parent507d73eaa2accb7ad880e8582fd4ffab45b7effd (diff)
Add implementation
Diffstat (limited to 'TODO')
-rw-r--r--TODO18
1 files changed, 18 insertions, 0 deletions
diff --git a/TODO b/TODO
new file mode 100644
index 0000000..a7f564e
--- /dev/null
+++ b/TODO
@@ -0,0 +1,18 @@
+@@ What is a project email (update the manifest file)? Using personal email of
+ one of the developers for now.
+
+@@ Get MinGW/msvcrt issue fixed (see client.c and pkg.c for details) in the
+ original code base. Issue report is at
+ https://github.com/pkgconf/pkgconf/issues/125.
+
+@@ Get thread safety issue fixed. Relates to wide using static char buffers
+ (just grep the sources for 'static char'). Issue report is at
+ https://github.com/pkgconf/pkgconf/issues/128.
+
+@@ Consider redefining PKGCONF_BUFSIZE from the current 65535 bytes to
+ something smaller, given it is used to allocate buffers on the stack
+ (sometimes several of them).
+
+@@ For VC including libpkgconf.h leads to including win-dirent.h, that injects
+ a bunch of static functions into the translation unit. So need to take care
+ of not including libpkgconf.h in too many places.