diff options
| author | Bent Bisballe Nyeng <deva@aasimon.org> | 2014-01-26 19:18:06 +0100 | 
|---|---|---|
| committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2014-01-26 19:18:06 +0100 | 
| commit | 89018c1274dcdd396fd708978a29986e12e5a8a7 (patch) | |
| tree | 21d3f653a34aea82e57b3a68f607d9028b9c664a | |
| parent | 00bc4a8fd7bfd6663a3635c536ff6da735d02839 (diff) | |
Fix GUI_LDFLAGS => GUI_LIBS.
| -rw-r--r-- | configure.ac | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/configure.ac b/configure.ac index e97dc6b..0562059 100644 --- a/configure.ac +++ b/configure.ac @@ -82,19 +82,19 @@ if test "x$enable_gui" = "xx11"; then    PKG_CHECK_MODULES(X11, x11 >= 1.0)    GUI_CFLAGS="-DX11 $X11_CFLAGS" -  GUI_LDFLAGS="$X11_LIBS" +  GUI_LIBS="$X11_LIBS"  elif test "x$enable_gui" = "xwin32"; then    AC_MSG_RESULT([Setting gui backend to Win32])    GUI_CFLAGS="-DWIN32" -  GUI_LDFLAGS="-lgdi32 -lsetupapi -lws2_32" +  GUI_LIBS="-lgdi32 -lsetupapi -lws2_32"  elif test "x$enable_gui" = "xpugl"; then    AC_MSG_RESULT([Setting gui backend to Pugl])    GUI_CFLAGS="-DPUGL" -  GUI_LDFLAGS="-lGLU -lGL -lglut" +  GUI_LIBS="-lGLU -lGL -lglut"  else     AC_MSG_ERROR([*** No GUI backend has been selected ***]) | 
