Bugfix in version declaration

This commit is contained in:
Yann Weber 2019-07-13 12:44:17 +02:00
commit 5c3202dbf8
3 changed files with 5 additions and 7 deletions

View file

@ -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])

View file

@ -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

View file

@ -32,7 +32,7 @@ void usage()
void print_version(int fd)
{
dprintf(fd, "%s\n", PACKAGE_STRING);
}
int parse_args(int argc, char *argv[])