build: use #error instead of invalid syntax

It reduces configure log noise.

Follow-up to 20c1b2d75e #13287
Closes #14181
This commit is contained in:
Viktor Szakats 2024-07-13 21:45:23 +02:00
parent 8dab7465a5
commit 4c22d97be7
No known key found for this signature in database
GPG key ID: B5ABD165E2AEF201
4 changed files with 9 additions and 9 deletions

View file

@ -94,7 +94,7 @@ int main (void)
#ifdef $1
return 0;
#else
force compilation error
#error force compilation error
#endif
}
]])
@ -130,7 +130,7 @@ int main (void)
#elif defined(__hpux) && defined(_XOPEN_SOURCE_EXTENDED)
return 0;
#else
force compilation error
#error force compilation error
#endif
}
]])