summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2018-06-08 19:39:30 +0200
committerBent Bisballe Nyeng <deva@aasimon.org>2018-06-08 19:39:30 +0200
commit98c83aaa3e693e25c146f3a15776262debc735dc (patch)
tree710450e28923682ee68217b915358e60518acdd7 /configure.ac
parent0979c285c0cdaf7efc65bdf86882db20596e1de7 (diff)
Don't default to preferring pugl on win32 and x11 just yet.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index f86ee54..37edd6f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -145,8 +145,8 @@ AS_IF([test "x$enable_gui" = "xauto"],
[AC_MSG_RESULT([Auto setting gui based on host: $host_os])
AS_CASE([$host_os],
[darwin*], [enable_gui="pugl-cocoa"],
- [linux*|*bsd*], [enable_gui="pugl-x11"],
- [msys|mingw*|windows*|winnt|cygwin], [enable_gui="pugl-win32"],
+ [linux*|*bsd*], [enable_gui="x11"],
+ [msys|mingw*|windows*|winnt|cygwin], [enable_gui="win32"],
AC_MSG_ERROR([Your platform is not currently supported])
)]