diff options
author | Brad King <brad.king@kitware.com> | 2009-06-10 15:49:23 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2009-06-10 15:49:23 (GMT) |
commit | 6f109620b356c6ff2d283d8fb1e4f545214a74b6 (patch) | |
tree | c2af8f29ab7b0551037a60b644fac283e73982df /Utilities/cmcurl | |
parent | fb643cd48329d2b8d4d79dbb6934b715e0db8dc7 (diff) | |
download | CMake-6f109620b356c6ff2d283d8fb1e4f545214a74b6.zip CMake-6f109620b356c6ff2d283d8fb1e4f545214a74b6.tar.gz CMake-6f109620b356c6ff2d283d8fb1e4f545214a74b6.tar.bz2 |
COMP: Fix cmcurl build on VMS
This defines IOCTL_3_ARGS in 'cmcurl/setup.h' to teach curl sources
about the three-argument ioctl() on VMS.
Diffstat (limited to 'Utilities/cmcurl')
-rw-r--r-- | Utilities/cmcurl/setup.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Utilities/cmcurl/setup.h b/Utilities/cmcurl/setup.h index 851c5a9..c49e63d 100644 --- a/Utilities/cmcurl/setup.h +++ b/Utilities/cmcurl/setup.h @@ -264,6 +264,10 @@ typedef unsigned char bool; #else /* MSDOS */ +#ifdef __VMS +#define IOCTL_3_ARGS 1 +#endif + #ifdef __BEOS__ #define sclose(x) closesocket(x) #else /* __BEOS__ */ |