Fixed bugs in configuration. Wasn't doing configuration for DPMS

and Xinerama correctly.  Also was using '#if defined(...)' instead
of '#if ...' for testing configure macros in some places.  This
yields the wrong answer if the macro is set to 0, which means
missing/disabled.
This commit is contained in:
crs
2004-10-28 21:40:56 +00:00
parent 12c95723b7
commit 91d1fcf38d
14 changed files with 39 additions and 35 deletions

View File

@@ -24,7 +24,7 @@
# include <sys/socket.h>
#endif
#if !defined(HAVE_SOCKLEN_T)
#if !HAVE_SOCKLEN_T
typedef int socklen_t;
#endif