Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | fix cross-compile breakage |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | d2ba02e16f1f85469915d7eed5398da8f026f2c5 |
User & Date: | ron 2010-08-31 03:58:14 |
Context
2010-08-31
| ||
05:12 | compile warning fixes (uninitialized vars) check-in: 3c326ea4 user: ron tags: trunk | |
03:58 | fix cross-compile breakage check-in: d2ba02e1 user: ron tags: trunk | |
01:53 | Merge the changes from the windowscompilers branch into the trunk. check-in: 3564af0f user: drh tags: trunk | |
Changes
Changes to src/login.c.
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
** logs and downloading diffs of very version of the archive that ** has ever existed, and things like that. */ #include "config.h" #include "login.h" #if defined(_WIN32) # include <windows.h> /* for Sleep */ # if defined(_MINGW32__) || defined(_MSC_VER) # define sleep Sleep /* windows does not have sleep, but Sleep */ # endif #endif #include <time.h> /* ** Return the name of the login cookie |
| |
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
** logs and downloading diffs of very version of the archive that
** has ever existed, and things like that.
*/
#include "config.h"
#include "login.h"
#if defined(_WIN32)
# include <windows.h> /* for Sleep */
# if defined(__MINGW32__) || defined(_MSC_VER)
# define sleep Sleep /* windows does not have sleep, but Sleep */
# endif
#endif
#include <time.h>
/*
** Return the name of the login cookie
|