include config.h in all compiled files
After running configure script (new config.h written), all objects should be recompiled.
This commit is contained in:
parent
15932c9d7b
commit
ca8e03b785
2 changed files with 3 additions and 7 deletions
|
@ -8,12 +8,7 @@
|
||||||
** This code is in the public domain and has no copyright.
|
** This code is in the public domain and has no copyright.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifdef HAVE_CONFIG_H
|
#include "config.h"
|
||||||
# include <config.h>
|
|
||||||
# ifdef HAVE_ALLOCA_H
|
|
||||||
# include <alloca.h>
|
|
||||||
# endif
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/* Since the code of getdate.y is not included in the Emacs executable
|
/* Since the code of getdate.y is not included in the Emacs executable
|
||||||
itself, there is no need to #define static in this file. Even if
|
itself, there is no need to #define static in this file. Even if
|
||||||
|
|
|
@ -25,11 +25,12 @@
|
||||||
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include "config.h"
|
||||||
|
|
||||||
#include <nss.h>
|
#include <nss.h>
|
||||||
#include <hasht.h>
|
#include <hasht.h>
|
||||||
#include <nsslowhash.h>
|
#include <nsslowhash.h>
|
||||||
|
|
||||||
/* #include "config.h" */
|
|
||||||
#include "hash.h"
|
#include "hash.h"
|
||||||
|
|
||||||
static NSSLOWInitContext *ictx;
|
static NSSLOWInitContext *ictx;
|
||||||
|
|
Loading…
Reference in a new issue