blob: 71decf43bf2adb41480a6103bf75c66724c9abc7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#ifndef GNOMESUPPORT_FAKE_H_
#define GNOMESUPPORT_FAKE_H_
#if HAVE_CONFIG_H
# include <config.h>
#endif
#include <gnomesupport.h>
#include <gnome-argp.h>
/* Override some of config.h.
Gnomesupport provides the replacements for these, so you actually
HAVE_ them. */
#ifndef HAVE_STRERROR
# define HAVE_STRERROR 1
#endif
#ifndef HAVE_PROGRAM_INVOCATION_NAME
# define HAVE_PROGRAM_INVOCATION_NAME 1
#endif
#endif /* GNOMESUPPORT_FAKE_H_ */
|