Add API for getting unicode representation of a keysym
[profile/ivi/libxkbcommon.git] / configure.ac
index 1fc6436..227026d 100644 (file)
@@ -45,13 +45,17 @@ XORG_MACROS_VERSION(1.8)
 XORG_DEFAULT_OPTIONS
 XORG_CHECK_MALLOC_ZERO
 
+# Check for compiler features
+AC_C_INLINE
+AC_C_TYPEOF
+
 # Check for programs
 AC_PROG_LEX
 AC_PROG_YACC
 AC_PATH_PROG([YACC_INST], $YACC)
-if test ! -f "src/xkbcomp/xkbparse.c"; then
+if test ! -f "src/xkbcomp/parser.c"; then
    if test -z "$YACC_INST"; then
-      AC_MSG_ERROR([yacc not found - unable to compile src/xkbcomp/xkbparse.y])
+      AC_MSG_ERROR([yacc not found - unable to compile src/xkbcomp/parser.y])
    fi
 fi
 
@@ -120,5 +124,6 @@ AC_SUBST([XKBCONFIGROOT])
 AC_CONFIG_FILES([
     Makefile
     makekeys/Makefile
+    xkbcommon-uninstalled.pc
     xkbcommon.pc])
 AC_OUTPUT