Mercurial > hg > octave-kai > gnulib-hg
annotate modules/execinfo @ 17476:6057744acd2c default tip master
autoupdate
author | Karl Berry <karl@freefriends.org> |
---|---|
date | Fri, 16 Aug 2013 06:32:22 -0700 (2013-08-16) |
parents | 879fe335e7cb |
children |
rev | line source |
---|---|
17057 | 1 Description: |
2 A GNU-like <execinfo.h>. | |
3 | |
4 Files: | |
5 lib/execinfo.c | |
6 lib/execinfo.in.h | |
7 m4/execinfo.m4 | |
8 | |
9 Depends-on: | |
10 extern-inline | |
11 | |
12 configure.ac: | |
13 gl_EXECINFO_H | |
14 | |
15 Makefile.am: | |
16 BUILT_SOURCES += $(EXECINFO_H) | |
17 | |
18 # We need the following in order to create <execinfo.h> when the system | |
19 # doesn't have one that works. | |
20 if GL_GENERATE_EXECINFO_H | |
21 execinfo.h: execinfo.in.h $(top_builddir)/config.status | |
22 $(AM_V_GEN)rm -f $@-t $@ && \ | |
23 { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \ | |
24 cat $(srcdir)/execinfo.in.h; \ | |
25 } > $@-t && \ | |
26 mv $@-t $@ | |
27 else | |
28 execinfo.h: $(top_builddir)/config.status | |
29 rm -f $@ | |
30 endif | |
31 MOSTLYCLEANFILES += execinfo.h execinfo.h-t | |
32 | |
33 Include: | |
34 <execinfo.h> | |
35 | |
17062
879fe335e7cb
execinfo: port to FreeBSD
Paul Eggert <eggert@cs.ucla.edu>
parents:
17057
diff
changeset
|
36 Link: |
879fe335e7cb
execinfo: port to FreeBSD
Paul Eggert <eggert@cs.ucla.edu>
parents:
17057
diff
changeset
|
37 $(LIB_EXECINFO) |
879fe335e7cb
execinfo: port to FreeBSD
Paul Eggert <eggert@cs.ucla.edu>
parents:
17057
diff
changeset
|
38 |
17057 | 39 License: |
40 LGPLv2+ | |
41 | |
42 Maintainer: | |
43 all |