lists.h, text.h: update code guard name from __HAVE_DEFINED_BOOL__ to PETIDOMO_HAS_DEFINED_BOOL

User names must not have a leading underscore. I made that change in petidomo.h
recently, but forgot to update those header files as well.
This commit is contained in:
Peter Simons 2013-02-11 14:22:42 +01:00
parent d6b37a4552
commit a7476aec82
3 changed files with 7 additions and 5 deletions

4
NEWS
View File

@ -1,7 +1,9 @@
#+TITLE: Petidomo Mailing List Server -*- mode:org;fill-column:79; -*- #+TITLE: Petidomo Mailing List Server -*- mode:org;fill-column:79; -*-
#+STARTUP: showall #+STARTUP: showall
* Noteworthy changes in release ?.? (????-??-??) [?] * Noteworthy changes in release 4.3 (2013-02-11) [stable]
Fix build error on FreeBSD.
* Noteworthy changes in release 4.2 (2013-02-09) [stable] * Noteworthy changes in release 4.2 (2013-02-09) [stable]

View File

@ -30,8 +30,8 @@
/********** Useful defines and declarations **********/ /********** Useful defines and declarations **********/
#ifndef __cplusplus #ifndef __cplusplus
#ifndef __HAVE_DEFINED_BOOL__ #ifndef PETIDOMO_HAS_DEFINED_BOOL
# define __HAVE_DEFINED_BOOL__ 1 # define PETIDOMO_HAS_DEFINED_BOOL 1
typedef int bool; typedef int bool;
#endif #endif
#ifndef FALSE #ifndef FALSE

View File

@ -34,8 +34,8 @@ extern "C" {
/********** Useful defines and declarations **********/ /********** Useful defines and declarations **********/
#ifndef __cplusplus #ifndef __cplusplus
#ifndef __HAVE_DEFINED_BOOL__ #ifndef PETIDOMO_HAS_DEFINED_BOOL
# define __HAVE_DEFINED_BOOL__ 1 # define PETIDOMO_HAS_DEFINED_BOOL 1
typedef int bool; typedef int bool;
#endif #endif