mirror of
https://github.com/php/php-src.git
synced 2026-04-28 18:53:33 +02:00
62317d592f
Very interesting... it turns out that when Valgrind support was enabled, `#include "config.h"` from within mbstring was actually including the file "config.h" from Valgrind, and not the one from mbstring!! This is because -I/usr/include/valgrind was added to the compiler invocation _before_ -Iext/mbstring/libmbfl. Make sure we actually include the file which was intended.
14 lines
312 B
C
14 lines
312 B
C
#include "nls_de.h"
|
|
|
|
static const char *mbfl_language_german_aliases[] = {"Deutsch", NULL};
|
|
|
|
const mbfl_language mbfl_language_german = {
|
|
mbfl_no_language_german,
|
|
"German",
|
|
"de",
|
|
(const char *(*)[])&mbfl_language_german_aliases,
|
|
mbfl_no_encoding_8859_15,
|
|
mbfl_no_encoding_qprint,
|
|
mbfl_no_encoding_8bit
|
|
};
|