diff options
| author | Glenn Morris | 2012-04-23 06:17:30 -0400 |
|---|---|---|
| committer | Glenn Morris | 2012-04-23 06:17:30 -0400 |
| commit | ca0294bbd827c08fd60d32e63c8e133342b6551d (patch) | |
| tree | 94d6da25eab1f8959152b0f5ba566e1caf1e7cfe | |
| parent | f621ccf5b8d7038c1e614616d7aa831a0e25b18f (diff) | |
| download | emacs-ca0294bbd827c08fd60d32e63c8e133342b6551d.tar.gz emacs-ca0294bbd827c08fd60d32e63c8e133342b6551d.zip | |
Auto-commit of generated files.
| -rw-r--r-- | autogen/config.in | 12 | ||||
| -rwxr-xr-x | autogen/configure | 16 |
2 files changed, 23 insertions, 5 deletions
diff --git a/autogen/config.in b/autogen/config.in index 1082e150fc6..805629c9c8f 100644 --- a/autogen/config.in +++ b/autogen/config.in | |||
| @@ -148,6 +148,18 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 148 | /* Define to 1 if using D-Bus. */ | 148 | /* Define to 1 if using D-Bus. */ |
| 149 | #undef HAVE_DBUS | 149 | #undef HAVE_DBUS |
| 150 | 150 | ||
| 151 | /* Define to 1 if you have the `dbus_validate_bus_name' function. */ | ||
| 152 | #undef HAVE_DBUS_VALIDATE_BUS_NAME | ||
| 153 | |||
| 154 | /* Define to 1 if you have the `dbus_validate_interface' function. */ | ||
| 155 | #undef HAVE_DBUS_VALIDATE_INTERFACE | ||
| 156 | |||
| 157 | /* Define to 1 if you have the `dbus_validate_member' function. */ | ||
| 158 | #undef HAVE_DBUS_VALIDATE_MEMBER | ||
| 159 | |||
| 160 | /* Define to 1 if you have the `dbus_validate_path' function. */ | ||
| 161 | #undef HAVE_DBUS_VALIDATE_PATH | ||
| 162 | |||
| 151 | /* Define to 1 if you have the `dbus_watch_get_unix_fd' function. */ | 163 | /* Define to 1 if you have the `dbus_watch_get_unix_fd' function. */ |
| 152 | #undef HAVE_DBUS_WATCH_GET_UNIX_FD | 164 | #undef HAVE_DBUS_WATCH_GET_UNIX_FD |
| 153 | 165 | ||
diff --git a/autogen/configure b/autogen/configure index 52575eb075b..5c57dcc0374 100755 --- a/autogen/configure +++ b/autogen/configure | |||
| @@ -7144,7 +7144,7 @@ fi | |||
| 7144 | 7144 | ||
| 7145 | 7145 | ||
| 7146 | nw="$nw -Waggregate-return" # anachronistic | 7146 | nw="$nw -Waggregate-return" # anachronistic |
| 7147 | nw="$nw -Wlong-long" # C90 is anachronistic (lib/gethrxtime.h) | 7147 | nw="$nw -Wlong-long" # C90 is anachronistic |
| 7148 | nw="$nw -Wc++-compat" # We don't care about C++ compilers | 7148 | nw="$nw -Wc++-compat" # We don't care about C++ compilers |
| 7149 | nw="$nw -Wundef" # Warns on '#if GNULIB_FOO' etc in gnulib | 7149 | nw="$nw -Wundef" # Warns on '#if GNULIB_FOO' etc in gnulib |
| 7150 | nw="$nw -Wtraditional" # Warns on #elif which we use often | 7150 | nw="$nw -Wtraditional" # Warns on #elif which we use often |
| @@ -11913,12 +11913,18 @@ $as_echo "no" >&6; } | |||
| 11913 | 11913 | ||
| 11914 | $as_echo "#define HAVE_DBUS 1" >>confdefs.h | 11914 | $as_echo "#define HAVE_DBUS 1" >>confdefs.h |
| 11915 | 11915 | ||
| 11916 | for ac_func in dbus_watch_get_unix_fd | 11916 | for ac_func in dbus_watch_get_unix_fd \ |
| 11917 | dbus_validate_bus_name \ | ||
| 11918 | dbus_validate_path \ | ||
| 11919 | dbus_validate_interface \ | ||
| 11920 | dbus_validate_member | ||
| 11917 | do : | 11921 | do : |
| 11918 | ac_fn_c_check_func "$LINENO" "dbus_watch_get_unix_fd" "ac_cv_func_dbus_watch_get_unix_fd" | 11922 | as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` |
| 11919 | if test "x$ac_cv_func_dbus_watch_get_unix_fd" = x""yes; then : | 11923 | ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" |
| 11924 | eval as_val=\$$as_ac_var | ||
| 11925 | if test "x$as_val" = x""yes; then : | ||
| 11920 | cat >>confdefs.h <<_ACEOF | 11926 | cat >>confdefs.h <<_ACEOF |
| 11921 | #define HAVE_DBUS_WATCH_GET_UNIX_FD 1 | 11927 | #define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 |
| 11922 | _ACEOF | 11928 | _ACEOF |
| 11923 | 11929 | ||
| 11924 | fi | 11930 | fi |