diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2005-01-07 02:14:42 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2005-01-07 02:14:42 +0800 |
commit | 35ad841aceed89072e2cc6f589405a6feb411f74 (patch) | |
tree | 2fdf16ad0c9c630733841728c9bd0e3406bae4ba /configure.ac | |
parent | 58a62ea3932ab6bdb599a0c519460a56622fe884 (diff) | |
download | gsoc2013-epiphany-35ad841aceed89072e2cc6f589405a6feb411f74.tar.gz gsoc2013-epiphany-35ad841aceed89072e2cc6f589405a6feb411f74.tar.zst gsoc2013-epiphany-35ad841aceed89072e2cc6f589405a6feb411f74.zip |
Use glib-mkenums to generate the enum and flags get_type functions.
2005-01-06 Christian Persch <chpe@cvs.gnome.org>
* configure.ac:
* embed/Makefile.am:
* embed/ephy-embed-event.c:
* embed/ephy-embed-event.h:
* embed/ephy-embed-persist.c:
* embed/ephy-embed-persist.h:
* embed/ephy-embed.c:
* embed/ephy-embed.h:
* embed/ephy-permission-manager.c:
* embed/ephy-permission-manager.h:
* lib/egg/Makefile.am:
* lib/egg/egg-toolbars-model.c:
* lib/egg/egg-toolbars-model.h:
* src/Makefile.am:
* src/ephy-link.c:
* src/ephy-link.h:
* src/ephy-navigation-action.c:
* src/ephy-shell.c: (ephy_shell_error_quark):
* src/ephy-shell.h:
* src/ephy-tab.c:
* src/ephy-tab.h:
* src/ephy-window.c:
Use glib-mkenums to generate the enum and flags get_type functions.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 83f79150e..e13e4b9e8 100644 --- a/configure.ac +++ b/configure.ac @@ -73,6 +73,7 @@ AC_PROG_CXX AM_PROG_CC_STDC AC_HEADER_STDC AC_PATH_PROG([GLIB_GENMARSHAL], [glib-genmarshal]) +AC_PATH_PROG([GLIB_MKENUMS],[glib-mkenums]) GNOME_DEBUG_CHECK GNOME_COMPILE_WARNINGS([error]) @@ -481,6 +482,12 @@ if test "x$filepicker" = "xyes"; then AC_DEFINE([ENABLE_FILEPICKER],[1],[Define to enable the native filepicker]) fi +dnl *************** +dnl Multimedia keys +dnl *************** + +AC_CHECK_HEADERS([X11/XF86keysym.h]) + dnl ******************************* dnl Add warning flags dnl ******************************* |