diff options
| author | Paul Eggert | 2014-12-18 14:32:06 -0800 |
|---|---|---|
| committer | Paul Eggert | 2014-12-18 14:32:38 -0800 |
| commit | d9639a28cf54358b6ae9432226ced3a5b59cca7c (patch) | |
| tree | ee839186de23f9eb7b29cb30f53a9921aa3c1846 /src | |
| parent | 87f9ec7afb1180d6dc1ef65134f59cddddda1d68 (diff) | |
| download | emacs-d9639a28cf54358b6ae9432226ced3a5b59cca7c.tar.gz emacs-d9639a28cf54358b6ae9432226ced3a5b59cca7c.zip | |
* gnutls.c: Include gnutls.h.
This to check syms_of_gnutls's API even when !HAVE_GNUTLS.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 2 | ||||
| -rw-r--r-- | src/gnutls.c | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 3ec45063233..359dca97f48 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | 2014-12-18 Paul Eggert <eggert@cs.ucla.edu> | 1 | 2014-12-18 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 2 | ||
| 3 | * gnutls.c: Include gnutls.h. | ||
| 4 | This to check syms_of_gnutls's API even when !HAVE_GNUTLS. | ||
| 3 | * image.c (svg_load): Fix pointer signedness. | 5 | * image.c (svg_load): Fix pointer signedness. |
| 4 | 6 | ||
| 5 | 2014-12-18 Martin Rudalics <rudalics@gmx.at> | 7 | 2014-12-18 Martin Rudalics <rudalics@gmx.at> |
diff --git a/src/gnutls.c b/src/gnutls.c index 1feb7e18221..bf9f1323546 100644 --- a/src/gnutls.c +++ b/src/gnutls.c | |||
| @@ -22,6 +22,7 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 22 | 22 | ||
| 23 | #include "lisp.h" | 23 | #include "lisp.h" |
| 24 | #include "process.h" | 24 | #include "process.h" |
| 25 | #include "gnutls.h" | ||
| 25 | #include "coding.h" | 26 | #include "coding.h" |
| 26 | 27 | ||
| 27 | #ifdef HAVE_GNUTLS | 28 | #ifdef HAVE_GNUTLS |