Bugfix in version declaration
This commit is contained in:
parent
9906803b42
commit
5c3202dbf8
3 changed files with 5 additions and 7 deletions
|
|
@ -1,10 +1,8 @@
|
|||
# -*- Autoconf -*-
|
||||
# Process this file with autoconf to produce a configure script.
|
||||
|
||||
VERSION=0.0.1
|
||||
|
||||
AC_PREREQ([2.69])
|
||||
AC_INIT([PyFCGI], VERSION, [yann.weber@member.fsf.org])
|
||||
AC_INIT([PyFCGI], [0.0.1], [yann.weber@member.fsf.org])
|
||||
AC_CONFIG_SRCDIR([src/main.c])
|
||||
AC_CONFIG_HEADERS([include/config.h])
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,8 @@
|
|||
/* include/config.h.in. Generated from configure.ac by autoheader. */
|
||||
|
||||
/* Version number of package */
|
||||
#undef VERSION
|
||||
|
||||
/* Define to 1 if you have the <syslog.h> header file. */
|
||||
#undef HAVE_SYSLOG_H
|
||||
|
||||
|
|
@ -55,9 +58,6 @@
|
|||
#endif
|
||||
|
||||
|
||||
/* Version number of package */
|
||||
#undef VERSION
|
||||
|
||||
/* Define to 1 if on MINIX. */
|
||||
#undef _MINIX
|
||||
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ void usage()
|
|||
|
||||
void print_version(int fd)
|
||||
{
|
||||
|
||||
dprintf(fd, "%s\n", PACKAGE_STRING);
|
||||
}
|
||||
|
||||
int parse_args(int argc, char *argv[])
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue