X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=configure.ac;h=21cc7650425d15fa50ad254cfdda7f7c81b742ac;hb=d6c7b27c704d70cc8bad437980834a80637e3c65;hp=0affc1a37fb44f94cbf3c2c0ee1f3faf35e8420c;hpb=efc61e9d05b077f13a76982590fb0bd6a9d8dc61;p=supertux.git diff --git a/configure.ac b/configure.ac index 0affc1a37..21cc76504 100644 --- a/configure.ac +++ b/configure.ac @@ -26,6 +26,13 @@ CXXFLAGS="$CXXFLAGS -ffast-math" AC_PROG_CC AC_PROG_CXX AC_PROG_INSTALL +AC_PATH_PROG(AR, ar) +if test "$AR" = "" ; then + AC_MSG_ERROR([Couldn't find ar]) +fi +AR="$AR ru" + +AC_C_BIGENDIAN AC_CHECK_PROGS(XGETTEXT, [xgettext xgettext.exe]) if test -n "$XGETTEXT" ; then @@ -128,10 +135,6 @@ AX_CHECK_GL if test "$no_gl" = "yes"; then AC_MSG_ERROR([Please install opengl libraries and headers]) fi -AX_CHECK_GLU -if test "$no_glu" = "yes"; then - AC_MSG_ERROR([Please install opengl utility libraries and headers]) -fi dnl Checks for library functions. AC_CHECK_FUNCS(mkdir strdup strstr)