From 6f109620b356c6ff2d283d8fb1e4f545214a74b6 Mon Sep 17 00:00:00 2001 From: Brad King Date: Wed, 10 Jun 2009 11:49:23 -0400 Subject: [PATCH] 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. --- Utilities/cmcurl/setup.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Utilities/cmcurl/setup.h b/Utilities/cmcurl/setup.h index 851c5a980..c49e63de7 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__ */