summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Browning <rlb@defaultvalue.org>2003-03-27 20:06:01 +0000
committerRob Browning <rlb@defaultvalue.org>2003-03-27 20:06:01 +0000
commit277ee0fa4c63602f66fd1dd976ade36b116db297 (patch)
tree329769c2fe6206987f7ed51fbd77f105cebb05be
parentd96208cc722cf194b511ce43c8d74a8cc47ed352 (diff)
downloadguile-277ee0fa4c63602f66fd1dd976ade36b116db297.tar.gz
* coop-defs.h: fix various preprocessor usages of new public
symbols to expect 0 or 1 values rather than 1 or undefined. i.e. change #ifdef to #if, etc.
-rw-r--r--libguile/coop-defs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/coop-defs.h b/libguile/coop-defs.h
index 13f826d3b..918713b51 100644
--- a/libguile/coop-defs.h
+++ b/libguile/coop-defs.h
@@ -49,7 +49,7 @@
#include "libguile/__scm.h"
#include "libguile/iselect.h"
-#ifdef SCM_HAVE_WINSOCK2_H
+#if SCM_HAVE_WINSOCK2_H
# include <winsock2.h>
#endif