~vcs-imports/gawk/master

« back to all changes in this revision

Viewing changes to replace.c

Update README.solaris.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 * replace.c -- Get replacement versions of functions.
3
3
 */
4
4
 
5
 
/*
6
 
 * Copyright (C) 1989, 1991-2014, 2018, 2022, the Free Software Foundation, Inc.
7
 
 *
 
5
/* 
 
6
 * Copyright (C) 1989, 1991-2013 the Free Software Foundation, Inc.
 
7
 * 
8
8
 * This file is part of GAWK, the GNU implementation of the
9
9
 * AWK Programming Language.
10
 
 *
 
10
 * 
11
11
 * GAWK is free software; you can redistribute it and/or modify
12
12
 * it under the terms of the GNU General Public License as published by
13
13
 * the Free Software Foundation; either version 3 of the License, or
14
14
 * (at your option) any later version.
15
 
 *
 
15
 * 
16
16
 * GAWK is distributed in the hope that it will be useful,
17
17
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18
18
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19
19
 * GNU General Public License for more details.
20
 
 *
 
20
 * 
21
21
 * You should have received a copy of the GNU General Public License
22
22
 * along with this program; if not, write to the Free Software
23
23
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
50
50
#include "missing_d/memmove.c"
51
51
#endif  /* HAVE_MEMMOVE */
52
52
 
53
 
#if !defined(HAVE_STRNCASECMP) || !defined(HAVE_STRCASECMP)
 
53
#ifndef HAVE_STRNCASECMP
54
54
#include "missing_d/strncasecmp.c"
55
55
#endif  /* HAVE_STRCASE */
56
56
 
84
84
#ifndef HAVE_TZSET
85
85
#include "missing_d/tzset.c"
86
86
#endif /* HAVE_TZSET */
87
 
 
 
87
 
88
88
#ifndef HAVE_MKTIME
89
89
/* mktime.c defines main() if DEBUG is set */
90
90
#undef DEBUG
91
91
#include "missing_d/mktime.c"
92
92
#endif /* HAVE_MKTIME */
93
93
 
94
 
#ifndef HAVE_TIMEGM
95
 
#include "missing_d/timegm.c"
96
 
#endif /* HAVE_TIMEGM */
97
 
 
98
94
#ifndef HAVE_SNPRINTF
99
95
#include "missing_d/snprintf.c"
100
96
#endif
115
111
#include "missing_d/strcoll.c"
116
112
#endif
117
113
 
118
 
#ifndef HAVE_STRSIGNAL
119
 
#include "missing_d/strsignal.c"
 
114
#if ! MBS_SUPPORT
 
115
#include "missing_d/wcmisc.c"
120
116
#endif