Changeset 6249a88f


Ignore:
Timestamp:
Apr 4, 2013, 2:31:41 AM (11 years ago)
Author:
Anders Kaseorg <andersk@mit.edu>
Branches:
master, release-1.10
Children:
eb5e8fc
Parents:
cb1243be
git-author:
Anders Kaseorg <andersk@mit.edu> (12/11/12 00:52:39)
git-committer:
Anders Kaseorg <andersk@mit.edu> (04/04/13 02:31:41)
Message:
Include generated headers with #include <>

http://www.gnu.org/software/autoconf/manual/html_node/Configuration-Headers.html
“With the appropriate -I option, you can use ‘#include <config.h>’.
Actually, it's a good habit to use it, because in the rare case when
the source directory contains another config.h, the build directory
should be searched first.”

Signed-off-by: Anders Kaseorg <andersk@mit.edu>
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • compat/compat.h

    r4dde585 r6249a88f  
    22#define INC_BARNOWL_COMPAT_COMPAT_H
    33
    4 #include "../config.h"
     4#include <config.h>
    55
    66#include <stddef.h>
  • owl.h

    rbbc31e4 r6249a88f  
    1010#define INC_BARNOWL_OWL_H
    1111
    12 #include "config.h"
     12#include <config.h>
    1313
    1414#include "compat/compat.h"
     
    608608extern owl_global g;
    609609
    610 #include "owl_prototypes.h"
     610#include <owl_prototypes.h>
    611611
    612612/* These were missing from the Zephyr includes before Zephyr 3. */
  • zcrypt.c

    rd72ba1e r6249a88f  
    1717#include <ctype.h>
    1818
    19 #include "config.h"
     19#include <config.h>
    2020
    2121#ifdef HAVE_KERBEROS_IV
Note: See TracChangeset for help on using the changeset viewer.