source: trunk/third/rpm/rpmio/stubs.c @ 19079

Revision 19079, 1.1 KB checked in by ghudson, 22 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r19078, which included commits to RCS files with non-trunk default branches.
Line 
1/**
2 * \file rpmio/stubs.c
3 */
4
5/* XXX Portable shared libraries require rpmlib to contain these functions. */
6
7#include "system.h"
8
9#if !defined(HAVE_BASENAME)
10#include "misc/basename.c"
11#endif
12
13#if !defined(HAVE_GETCWD)
14#include "misc/getcwd.c"
15#endif
16
17#if !defined(HAVE_GETWD)
18#include "misc/getwd.c"
19#endif
20
21#if !defined(HAVE_PUTENV)
22#include "misc/putenv.c"
23#endif
24
25#if defined(USE_GETMNTENT)
26#include "misc/getmntent.c"
27#endif
28
29#if !defined(HAVE_REALPATH)
30#include "misc/realpath.c"
31#endif
32
33#if !defined(HAVE_SETENV)
34#include "misc/setenv.c"
35#endif
36
37#if !defined(HAVE_STPCPY)
38#include "misc/stpcpy.c"
39#endif
40
41#if !defined(HAVE_STPNCPY)
42#include "misc/stpncpy.c"
43#endif
44
45#if !defined(HAVE_STRCSPN)
46#include "misc/strcspn.c"
47#endif
48
49#if !defined(HAVE_STRSPN)
50#include "misc/strdup.c"
51#endif
52
53#if !defined(HAVE_STRERROR)
54#include "misc/error.c"
55#endif
56
57#if !defined(HAVE_STRTOL)
58#include "misc/strtol.c"
59#endif
60
61#if !defined(HAVE_STRTOUL)
62#include "misc/strtoul.c"
63#endif
64
65#if !defined(HAVE_STRSPN)
66#include "misc/strspn.c"
67#endif
68
69#if !defined(HAVE_STRSTR)
70#include "misc/strstr.c"
71#endif
72
73#if defined(USE_GNU_GLOB)
74#include "misc/fnmatch.c"
75#include "misc/glob.c"
76#endif
Note: See TracBrowser for help on using the repository browser.