summaryrefslogtreecommitdiff
path: root/fluid
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2001-10-29 21:59:15 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2001-10-29 21:59:15 +0000
commita1944b77ab98f7e56cb4c0cddc8bb1681eaacaaa (patch)
tree41055a6f53d6a86131feec9f6679f2ed84d2c429 /fluid
parent38fdf727f70cf11e595d69f073badcd93aaef14e (diff)
Cygwin fixes...
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@1666 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'fluid')
-rw-r--r--fluid/fluid.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/fluid/fluid.cxx b/fluid/fluid.cxx
index 4b066c2bc..79411a94d 100644
--- a/fluid/fluid.cxx
+++ b/fluid/fluid.cxx
@@ -1,5 +1,5 @@
//
-// "$Id: fluid.cxx,v 1.15.2.13.2.8 2001/09/30 17:37:06 easysw Exp $"
+// "$Id: fluid.cxx,v 1.15.2.13.2.9 2001/10/29 21:59:14 easysw Exp $"
//
// FLUID main entry for the Fast Light Tool Kit (FLTK).
//
@@ -268,7 +268,7 @@ extern int pasteoffset;
static int ipasteoffset;
static char* cutfname() {
-#ifdef WIN32
+#if defined WIN32 && ! defined(__CYGWIN__)
# ifndef MAX_PATH
# define MAX_PATH 256
# endif // !MAX_PATH
@@ -463,7 +463,7 @@ static int arg(int argc, char** argv, int& i) {
return 0;
}
-#ifndef WIN32
+#if ! (defined(WIN32) && !defined (__CYGWIN__))
#include <signal.h>
#ifdef _sigargs
@@ -521,5 +521,5 @@ int main(int argc,char **argv) {
}
//
-// End of "$Id: fluid.cxx,v 1.15.2.13.2.8 2001/09/30 17:37:06 easysw Exp $".
+// End of "$Id: fluid.cxx,v 1.15.2.13.2.9 2001/10/29 21:59:14 easysw Exp $".
//