diff options
author | Ton Voon <tonvoon@users.sourceforge.net> | 2004-12-21 09:32:45 (GMT) |
---|---|---|
committer | Ton Voon <tonvoon@users.sourceforge.net> | 2004-12-21 09:32:45 (GMT) |
commit | cf812dff06cdd8166366009b45142ba3db41e619 (patch) | |
tree | f404a259fa889bb07e2c71b283638e8150f5cbfa /lib | |
parent | e22914b7ff9b863665f6e2ad19527b5cf9c4b839 (diff) | |
download | monitoring-plugins-cf812dff06cdd8166366009b45142ba3db41e619.tar.gz |
Fixed compile problem on Sol2.6 with stdbool.h
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1047 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Makefile.am | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/Makefile.am b/lib/Makefile.am index 80f3e62..9cab14a 100644 --- a/lib/Makefile.am +++ b/lib/Makefile.am | |||
@@ -36,3 +36,11 @@ libnagiosplug_a_SOURCES = snprintf.c | |||
36 | 36 | ||
37 | INCLUDES = -I$(srcdir) -I$(top_srcdir)/intl | 37 | INCLUDES = -I$(srcdir) -I$(top_srcdir)/intl |
38 | 38 | ||
39 | BUILT_SOURCES = $(STDBOOL_H) | ||
40 | EXTRA_DIST = stdbool_.h | ||
41 | MOSTLYCLEANFILES = stdbool.h stdbool.ht | ||
42 | # Create stdbool.h on systems that lack a working one. | ||
43 | stdbool.h: stdbool_.h | ||
44 | sed -e 's/@''HAVE__BOOL''@/$(HAVE__BOOL)/g' $(srcdir)/stdbool_.h > $@t | ||
45 | mv $@t $@ | ||
46 | |||