diff options
author | asn <asn@c9f7a03b-bd48-0410-a16d-cbbf54688b0b> | 2010-10-19 17:44:45 +0000 |
---|---|---|
committer | asn <asn@c9f7a03b-bd48-0410-a16d-cbbf54688b0b> | 2010-10-19 17:44:45 +0000 |
commit | 1f96f394f07d9aa6cc05775ae27f4bb5377be1aa (patch) | |
tree | 1234414221bebbf9b4e5db20e09e8a15c0c106f1 /pki/config.h.cmake | |
parent | 45cd91b956b2ff82188966583909f172b1ed8a5f (diff) | |
download | pki-1f96f394f07d9aa6cc05775ae27f4bb5377be1aa.tar.gz pki-1f96f394f07d9aa6cc05775ae27f4bb5377be1aa.tar.xz pki-1f96f394f07d9aa6cc05775ae27f4bb5377be1aa.zip |
cmake: Added define to make config.h including safer.
git-svn-id: svn+ssh://svn.fedorahosted.org/svn/pki/trunk@1392 c9f7a03b-bd48-0410-a16d-cbbf54688b0b
Diffstat (limited to 'pki/config.h.cmake')
-rw-r--r-- | pki/config.h.cmake | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/pki/config.h.cmake b/pki/config.h.cmake index 56375abc6..63ceff235 100644 --- a/pki/config.h.cmake +++ b/pki/config.h.cmake @@ -1,3 +1,6 @@ +#ifndef _CONFIG_H +#define _CONFIG_H + /* Name of package */ #cmakedefine PACKAGE "${APPLICATION_NAME}" @@ -44,3 +47,5 @@ /* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most significant byte first (like Motorola and SPARC, unlike Intel). */ #cmakedefine WORDS_BIGENDIAN 1 + +#endif /* _CONFIG_H */ |