Differences From:
File
src/db.c
part of check-in
[2bc0e2c565]
- Work toward adding a tagging system. Code compiles but is incomplete
and probably does not work.
by
drh on
2007-09-21 02:41:53.
[view]
To:
File
src/db.c
part of check-in
[83c876b447]
- Win32 port: compiles, all tests pass but many functions fail due to path separators. Incomplete. Path fixes to come next
by
anonymous on
2007-09-21 21:53:28.
[view]
@@ -34,12 +34,14 @@
** root of the local copy of the source tree.
**
*/
#include "config.h"
+#ifndef __MINGW32__
+# include <pwd.h>
+#endif
#include <sqlite3.h>
#include <sys/types.h>
#include <sys/stat.h>
-#include <pwd.h>
#include <unistd.h>
#include "db.h"
#if INTERFACE