mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-12-20 00:48:23 +00:00
* Fix build w/ C23
* Unrestrict tests by dropping dmalloc requirement
It dates back to:
commit a46f63115ab7e5db64009173f0b8662f0965f943
Author: Samuli Suominen <ssuominen@gentoo.org>
Date: Thu Jun 4 19:02:15 2009 +0000
RESTRICT test because it needs too old dmalloc we don't ship anymore.
(Portage version: 2.1.6.13/cvs/Linux x86_64)
But tests for memory leaks aren't really something we're interested in
from a packaging PoV, plus dmalloc was removed a little while ago. There's
tests which work fine w/o dmalloc so let's allow running those.
Closes: https://bugs.gentoo.org/946659
Signed-off-by: Sam James <sam@gentoo.org>
12 lines
278 B
Diff
12 lines
278 B
Diff
https://bugs.gentoo.org/946659
|
|
--- a/src/optionlexer.h
|
|
+++ b/src/optionlexer.h
|
|
@@ -24,7 +24,7 @@
|
|
#define OPTIONLEXER_H
|
|
|
|
extern FILE *option_in;
|
|
-int option_parse();
|
|
+int option_parse(void *option_list);
|
|
|
|
void option_lexer_init(char* filename);
|
|
void option_lexer_deinit();
|