Revert "Changed config.h.cm to use cmakedefine01 where usefull"amule-svn-r11110
commit887c524946bfbf74e52984675f7ea91400ab7299
authorupstream svn <svn@amule.org>
Sat, 6 Feb 2021 23:43:39 +0000 (6 23:43 +0000)
committerDévai Tamás <gonosztopi@amule.org>
Mon, 8 Feb 2021 01:37:04 +0000 (8 01:37 +0000)
tree0f05c0dcf0eca7a1b9495a48887a1b12200657e4
parentb71c75390517448810be22c273b3a3666b9fced8
Revert "Changed config.h.cm to use cmakedefine01 where usefull"

The code uses these macros autoconf-style, i.e. if they're defined (to _any_
value, usually 1), that means true. False is indicated by the macro not being
defined.

#cmakedefine01 defines the macro unconditionally, either to 0 or to 1, depending
on the corresponding test result. However, the code will treat both as true,
thus ignoring the corresponding test result.

The only exceptions are YYENABLE_NLS, which understands both (autoconf and #cmakedefine01)
style, and BOOST_ERROR_CODE_HEADER_ONLY, which is not used in the code at all.
.svn-revision
config.h.cm