configure.ac: Remove single quotes to fix syntax highlighting.
authorMatt Turner <mattst88@gmail.com>
Wed, 11 Jun 2014 01:08:10 +0000 (18:08 -0700)
committerMatt Turner <mattst88@gmail.com>
Thu, 12 Jun 2014 03:09:22 +0000 (20:09 -0700)
Please stop adding them.

Reviewed-by: Kristian Høgsberg <krh@bitplanet.net>
Reviewed-by: Emil Velikov <emil.l.velikov@gmail.com>
configure.ac

index cb14c0c66230687588359d3191abfd5ad2cd59e4..723a87990857314002791bd3c2f84ee6fb11f977 100644 (file)
@@ -543,7 +543,7 @@ darwin*|mingw*)
 *)
     AC_CHECK_FUNCS([clock_gettime], [CLOCK_LIB=],
                    [AC_CHECK_LIB([rt], [clock_gettime], [CLOCK_LIB=-lrt],
-                                 [AC_MSG_ERROR([Couldn't find clock_gettime])])])
+                                 [AC_MSG_ERROR([Could not find clock_gettime])])])
     AC_SUBST([CLOCK_LIB])
     ;;
 esac
@@ -1362,7 +1362,7 @@ if test "x$enable_xa" = xyes; then
     if test "x$with_gallium_drivers" = xswrast; then
        AC_MSG_ERROR([
           Building xa requires at least one non swrast gallium driver.
-          If you are looking to use libxatracker.so with vmware's virtual gpu,
+          If you are looking to use libxatracker.so with the VMware driver,
           make sure to include svga in the gallium drivers list, apart from
           enabling XA.
           Example: ./configure --enable-xa --with-gallium-drivers=svga...])