diff options
| author | Bent Bisballe Nyeng <deva@aasimon.org> | 2018-06-08 19:39:30 +0200 | 
|---|---|---|
| committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2018-06-08 19:39:30 +0200 | 
| commit | 98c83aaa3e693e25c146f3a15776262debc735dc (patch) | |
| tree | 710450e28923682ee68217b915358e60518acdd7 | |
| parent | 0979c285c0cdaf7efc65bdf86882db20596e1de7 (diff) | |
Don't default to preferring pugl on win32 and x11 just yet.
| -rw-r--r-- | configure.ac | 4 | 
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])  	     )] | 
