mirror of
https://github.com/Motion-Project/motion.git
synced 2026-06-12 15:54:40 -04:00
Fix jpegutils warning , update man page date in 3.2.11 and update CREDITS and CHANGELOG in trunk
This commit is contained in:
18
configure
vendored
18
configure
vendored
@@ -1,6 +1,6 @@
|
||||
#! /bin/sh
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.61 for motion 3.2.10.branch-r396.
|
||||
# Generated by GNU Autoconf 2.61 for motion 3.2.11.branch-r398.
|
||||
#
|
||||
# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
|
||||
# 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
|
||||
@@ -572,8 +572,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
|
||||
# Identity of this package.
|
||||
PACKAGE_NAME='motion'
|
||||
PACKAGE_TARNAME='motion'
|
||||
PACKAGE_VERSION='3.2.10.branch-r396'
|
||||
PACKAGE_STRING='motion 3.2.10.branch-r396'
|
||||
PACKAGE_VERSION='3.2.11.branch-r398'
|
||||
PACKAGE_STRING='motion 3.2.11.branch-r398'
|
||||
PACKAGE_BUGREPORT=''
|
||||
|
||||
ac_unique_file="motion.c"
|
||||
@@ -1178,7 +1178,7 @@ if test "$ac_init_help" = "long"; then
|
||||
# Omit some internal or obsolete options to make the list less imposing.
|
||||
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||
cat <<_ACEOF
|
||||
\`configure' configures motion 3.2.10.branch-r396 to adapt to many kinds of systems.
|
||||
\`configure' configures motion 3.2.11.branch-r398 to adapt to many kinds of systems.
|
||||
|
||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||
|
||||
@@ -1239,7 +1239,7 @@ fi
|
||||
|
||||
if test -n "$ac_init_help"; then
|
||||
case $ac_init_help in
|
||||
short | recursive ) echo "Configuration of motion 3.2.10.branch-r396:";;
|
||||
short | recursive ) echo "Configuration of motion 3.2.11.branch-r398:";;
|
||||
esac
|
||||
cat <<\_ACEOF
|
||||
|
||||
@@ -1375,7 +1375,7 @@ fi
|
||||
test -n "$ac_init_help" && exit $ac_status
|
||||
if $ac_init_version; then
|
||||
cat <<\_ACEOF
|
||||
motion configure 3.2.10.branch-r396
|
||||
motion configure 3.2.11.branch-r398
|
||||
generated by GNU Autoconf 2.61
|
||||
|
||||
Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
|
||||
@@ -1389,7 +1389,7 @@ cat >config.log <<_ACEOF
|
||||
This file contains any messages produced by compilers while
|
||||
running configure, to aid debugging if configure makes a mistake.
|
||||
|
||||
It was created by motion $as_me 3.2.10.branch-r396, which was
|
||||
It was created by motion $as_me 3.2.11.branch-r398, which was
|
||||
generated by GNU Autoconf 2.61. Invocation command line was
|
||||
|
||||
$ $0 $@
|
||||
@@ -8140,7 +8140,7 @@ exec 6>&1
|
||||
# report actual input values of CONFIG_FILES etc. instead of their
|
||||
# values after options handling.
|
||||
ac_log="
|
||||
This file was extended by motion $as_me 3.2.10.branch-r396, which was
|
||||
This file was extended by motion $as_me 3.2.11.branch-r398, which was
|
||||
generated by GNU Autoconf 2.61. Invocation command line was
|
||||
|
||||
CONFIG_FILES = $CONFIG_FILES
|
||||
@@ -8189,7 +8189,7 @@ Report bugs to <bug-autoconf@gnu.org>."
|
||||
_ACEOF
|
||||
cat >>$CONFIG_STATUS <<_ACEOF
|
||||
ac_cs_version="\\
|
||||
motion config.status 3.2.10.branch-r396
|
||||
motion config.status 3.2.11.branch-r398
|
||||
configured by $0, generated by GNU Autoconf 2.61,
|
||||
with options \\"`echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\"
|
||||
|
||||
|
||||
14
jpegutils.c
14
jpegutils.c
@@ -51,8 +51,8 @@
|
||||
*/
|
||||
|
||||
|
||||
static void jpeg_buffer_src (j_decompress_ptr cinfo, unsigned char *buffer,
|
||||
long num);
|
||||
static void jpeg_buffer_src(j_decompress_ptr cinfo, unsigned char *buffer,
|
||||
long num);
|
||||
static void jpeg_buffer_dest(j_compress_ptr cinfo, unsigned char *buffer,
|
||||
long len);
|
||||
static void jpeg_skip_ff(j_decompress_ptr cinfo);
|
||||
@@ -71,9 +71,9 @@ static void jpeg_skip_ff(j_decompress_ptr cinfo);
|
||||
* before any data is actually read.
|
||||
*/
|
||||
|
||||
static void init_source(j_decompress_ptr cinfo)
|
||||
static void init_source(j_decompress_ptr cinfo ATTRIBUTE_UNUSED)
|
||||
{
|
||||
/* no work necessary here */
|
||||
/* no work necessary here */
|
||||
}
|
||||
|
||||
|
||||
@@ -118,7 +118,7 @@ static void skip_input_data(j_decompress_ptr cinfo, long num_bytes)
|
||||
* after all data has been read. Often a no-op.
|
||||
*/
|
||||
|
||||
static void term_source(j_decompress_ptr cinfo)
|
||||
static void term_source(j_decompress_ptr cinfo ATTRIBUTE_UNUSED)
|
||||
{
|
||||
/* no work necessary here */
|
||||
}
|
||||
@@ -184,7 +184,7 @@ static void jpeg_skip_ff(j_decompress_ptr cinfo)
|
||||
* before any data is actually written.
|
||||
*/
|
||||
|
||||
static void init_destination (j_compress_ptr cinfo)
|
||||
static void init_destination(j_compress_ptr cinfo ATTRIBUTE_UNUSED)
|
||||
{
|
||||
/* No work necessary here */
|
||||
}
|
||||
@@ -216,7 +216,7 @@ static boolean empty_output_buffer(j_compress_ptr cinfo)
|
||||
* for error exit.
|
||||
*/
|
||||
|
||||
static void term_destination(j_compress_ptr cinfo)
|
||||
static void term_destination(j_compress_ptr cinfo ATTRIBUTE_UNUSED)
|
||||
{
|
||||
/* no work necessary here */
|
||||
}
|
||||
|
||||
2
motion.1
2
motion.1
@@ -1,4 +1,4 @@
|
||||
.TH MOTION 1 2008-05-05 "Motion" "Motion Options and Config Files"
|
||||
.TH MOTION 1 2008-08-02 "Motion" "Motion Options and Config Files"
|
||||
.SH NAME
|
||||
motion \- Detect motion using a video4linux device
|
||||
.SH SYNOPSIS
|
||||
|
||||
@@ -3,4 +3,4 @@
|
||||
SNV_VERSION=`cd "$1" && LC_ALL=C svn info 2> /dev/null | grep Revision | cut -d' ' -f2`
|
||||
test $SNV_VERSION || SNV_VERSION=`cd "$1" && grep revision .svn/entries 2>/dev/null | cut -d '"' -f2`
|
||||
test $SNV_VERSION || SNV_VERSION=UNKNOWN
|
||||
echo -n "3.2.10.branch-r$SNV_VERSION"
|
||||
echo -n "3.2.11.branch-r$SNV_VERSION"
|
||||
|
||||
Reference in New Issue
Block a user