summaryrefslogtreecommitdiff
path: root/libraries
diff options
context:
space:
mode:
authorSimon Marlow <simonmar@microsoft.com>2006-08-29 10:49:21 +0000
committerSimon Marlow <simonmar@microsoft.com>2006-08-29 10:49:21 +0000
commit7fe69f70b5546d9cd9dd7717df3d7f655be2dbb5 (patch)
treeb6e4f640501c89dbae70e0ee1e61e1051fc42b8b /libraries
parent9cb7f4755c5099148bea64bf34b1af2da462b158 (diff)
downloadhaskell-7fe69f70b5546d9cd9dd7717df3d7f655be2dbb5.tar.gz
omit HGL on Windows
Diffstat (limited to 'libraries')
-rw-r--r--libraries/Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/libraries/Makefile b/libraries/Makefile
index b6d8ede187..889d86a281 100644
--- a/libraries/Makefile
+++ b/libraries/Makefile
@@ -31,7 +31,11 @@ SUBDIRS += $(wildcard mtl)
SUBDIRS += $(wildcard fgl)
SUBDIRS += $(wildcard X11)
SUBDIRS += $(wildcard time)
+ifeq "$(Windows)" "NO"
+# HGL is not working on Win32, so omit it for now. Better not to ship it
+# at all than to ship a broken version.
SUBDIRS += $(wildcard HGL)
+endif
SUBDIRS += $(wildcard OpenGL)
SUBDIRS += $(wildcard GLUT)
SUBDIRS += $(wildcard OpenAL)