Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Move some posix only includes so they are not used on _WIN32. Can compile again on MinGW. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | ssh-test-http |
Files: | files | file ages | folders |
SHA1: | 8278a03f0ef162e3dbd8b0b4315ef46e |
User & Date: | mgagnon 2013-08-25 03:25:05 |
Context
2013-08-30
| ||
14:07 | Merge in latest features and fixes from trunk. Leaf check-in: ef8b9da0 user: andybradford tags: ssh-test-http | |
2013-08-25
| ||
03:25 | Move some posix only includes so they are not used on _WIN32. Can compile again on MinGW. check-in: 8278a03f user: mgagnon tags: ssh-test-http | |
2013-08-24
| ||
19:02 | Make a best effort to record the IP of the remote host in rcvfrom. check-in: 5627d795 user: andybradford tags: ssh-test-http | |
Changes
Changes to src/popen.c.
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 |
** ******************************************************************************* ** ** This file contains an implementation of a bi-directional popen(). */ #include "config.h" #include "popen.h" #include <signal.h> #include <sys/wait.h> #ifdef _WIN32 #include <windows.h> #include <fcntl.h> /* ** Print a fatal error and quit. */ static void win32_fatal_error(const char *zMsg){ fossil_fatal("%s", zMsg); } #endif /* ** The following macros are used to cast pointers to integers and ** integers to pointers. The way you do this varies from one compiler ** to the next, so we have developed the following set of #if statements ** to generate appropriate macros for a wide range of compilers. |
< < > > > |
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 |
** ******************************************************************************* ** ** This file contains an implementation of a bi-directional popen(). */ #include "config.h" #include "popen.h" #ifdef _WIN32 #include <windows.h> #include <fcntl.h> /* ** Print a fatal error and quit. */ static void win32_fatal_error(const char *zMsg){ fossil_fatal("%s", zMsg); } #else #include <signal.h> #include <sys/wait.h> #endif /* ** The following macros are used to cast pointers to integers and ** integers to pointers. The way you do this varies from one compiler ** to the next, so we have developed the following set of #if statements ** to generate appropriate macros for a wide range of compilers. |