File tree 4 files changed +19
-8
lines changed
4 files changed +19
-8
lines changed Original file line number Diff line number Diff line change 1
1
2
+ Changes with v1.0.6
3
+
4
+ *) Generate the man page during the dist hook, and not
5
+ at build time. This makes life easy for parallel and
6
+ cross compiled builds. [Graham Leggett]
7
+
2
8
Changes with v1.0.5
3
9
4
10
*) End getopt parsing on first non-option argument.
Original file line number Diff line number Diff line change @@ -7,6 +7,9 @@ retry_SOURCES = retry.c
7
7
EXTRA_DIST = retry.spec
8
8
dist_man_MANS = retry.1
9
9
10
- retry.1 : retry.c $(top_srcdir ) /configure.ac
11
- which txt2man && ./retry --help | txt2man -d 1 -t " ${PACKAGE_NAME} " -r " ${PACKAGE_NAME} -${PACKAGE_VERSION} " > retry.1 || true
10
+ dist-hook : retry.1
11
+ install retry.1 $(distdir ) /retry.1
12
+
13
+ retry.1 : retry
14
+ ./retry --help | txt2man -d 1 -t " ${PACKAGE_NAME} " -r " ${PACKAGE_NAME} -${PACKAGE_VERSION} " > retry.1
12
15
Original file line number Diff line number Diff line change 13
13
to 0 otherwise. */
14
14
#undef HAVE_MALLOC
15
15
16
- /* Define to 1 if you have the <memory.h> header file. */
17
- #undef HAVE_MEMORY_H
18
-
19
16
/* Define to 1 if stdbool.h conforms to C99. */
20
17
#undef HAVE_STDBOOL_H
21
18
22
19
/* Define to 1 if you have the <stdint.h> header file. */
23
20
#undef HAVE_STDINT_H
24
21
22
+ /* Define to 1 if you have the <stdio.h> header file. */
23
+ #undef HAVE_STDIO_H
24
+
25
25
/* Define to 1 if you have the <stdlib.h> header file. */
26
26
#undef HAVE_STDLIB_H
27
27
67
67
/* Define to the version of this package. */
68
68
#undef PACKAGE_VERSION
69
69
70
- /* Define to 1 if you have the ANSI C header files. */
70
+ /* Define to 1 if all of the C90 standard headers exist (not just the ones
71
+ required in a freestanding environment). This macro is provided for
72
+ backward compatibility; new code need not use it. */
71
73
#undef STDC_HEADERS
72
74
73
75
/* Version number of package */
87
89
/* Define to rpl_malloc if the replacement function should be used. */
88
90
#undef malloc
89
91
90
- /* Define to `int' if <sys/types.h> does not define . */
92
+ /* Define as a signed integer type capable of holding a process identifier . */
91
93
#undef pid_t
92
94
93
95
/* Define to `unsigned int' if <sys/types.h> does not define. */
Original file line number Diff line number Diff line change 2
2
# Process this file with autoconf to produce a configure script.
3
3
4
4
AC_PREREQ ( 2.61 )
5
- AC_INIT ( retry , 1.0.5 , minfrin@sharp.fm )
5
+ AC_INIT ( retry , 1.0.6 , minfrin@sharp.fm )
6
6
AC_CONFIG_AUX_DIR ( build-aux )
7
7
AC_CONFIG_MACRO_DIRS([ m4] )
8
8
AM_INIT_AUTOMAKE ( [ dist-bzip2] )
You can’t perform that action at this time.
0 commit comments