summaryrefslogtreecommitdiff
path: root/Build/source
diff options
context:
space:
mode:
authorAkira Kakuto <kakuto@fuk.kindai.ac.jp>2019-08-29 00:13:30 +0000
committerAkira Kakuto <kakuto@fuk.kindai.ac.jp>2019-08-29 00:13:30 +0000
commitcfef3177180c99b411d632ddb043cebff4548d1c (patch)
tree688084a19fb4b22ab97b5707529c88458a9af33b /Build/source
parent4b4b6fe61666a7f2def3e72ed0fb2a6a8d2f7c4c (diff)
autosp 2019-08-26
git-svn-id: svn://tug.org/texlive/trunk@51980 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source')
-rw-r--r--Build/source/utils/README2
-rw-r--r--Build/source/utils/autosp/ChangeLog5
-rw-r--r--Build/source/utils/autosp/TLpatches/ChangeLog5
-rw-r--r--Build/source/utils/autosp/TLpatches/patch-01-binary-write26
-rw-r--r--Build/source/utils/autosp/autosp-src/ChangeLog5
-rw-r--r--Build/source/utils/autosp/autosp-src/autosp.c4
-rwxr-xr-xBuild/source/utils/autosp/autosp-src/configure20
-rw-r--r--Build/source/utils/autosp/autosp-src/configure.ac2
-rw-r--r--Build/source/utils/autosp/autosp-src/process_command.c58
-rw-r--r--Build/source/utils/autosp/autosp-src/process_command.h4
-rw-r--r--Build/source/utils/autosp/autosp-src/process_score.c2
-rw-r--r--Build/source/utils/autosp/autosp-src/process_score.h3
-rw-r--r--Build/source/utils/autosp/autosp-src/spacing_note.c2
-rw-r--r--Build/source/utils/autosp/autosp-src/status.c7
-rwxr-xr-xBuild/source/utils/autosp/configure20
-rw-r--r--Build/source/utils/autosp/configure.ac2
16 files changed, 118 insertions, 49 deletions
diff --git a/Build/source/utils/README b/Build/source/utils/README
index 7f70dc664de..312d865eeb0 100644
--- a/Build/source/utils/README
+++ b/Build/source/utils/README
@@ -9,7 +9,7 @@ asymptote 2.52 - checked 10aug19
see http://tug.org/texlive/build.html#asymptote
and tlpkg/bin/tl-update-asy
-autosp 2019-01-08 - checked 10Jan19
+autosp 2019-08-26 - checked 29aug19
http://ctan.org/pkg/autosp
devnag - from devanagari package installed in texmf-dist.
diff --git a/Build/source/utils/autosp/ChangeLog b/Build/source/utils/autosp/ChangeLog
index 6ab660f67d0..fdf737d7e6b 100644
--- a/Build/source/utils/autosp/ChangeLog
+++ b/Build/source/utils/autosp/ChangeLog
@@ -1,3 +1,8 @@
+2019-08-29 Akira Kakuto <kakuto@fuk.kindai.ac.jp>
+
+ * Import autosp-2019-08-26.
+ configure.ac: Adapted.
+
2019-01-10 Akira Kakuto <kakuto@fuk.kindai.ac.jp>
* Import autosp-2019-01-08.
diff --git a/Build/source/utils/autosp/TLpatches/ChangeLog b/Build/source/utils/autosp/TLpatches/ChangeLog
index cb793183d88..f4b585b0222 100644
--- a/Build/source/utils/autosp/TLpatches/ChangeLog
+++ b/Build/source/utils/autosp/TLpatches/ChangeLog
@@ -1,3 +1,8 @@
+2019-08-29 Akira Kakuto <kakuto@fuk.kindai.ac.jp>
+
+ Import autosp-2019-08-26.
+ * patch-01-binary-write: Adapt.
+
2019-01-10 Akira Kakuto <kakuto@fuk.kindai.ac.jp>
Import autosp-2019-01-08.
diff --git a/Build/source/utils/autosp/TLpatches/patch-01-binary-write b/Build/source/utils/autosp/TLpatches/patch-01-binary-write
index 9a5e5d7f308..3b96131951e 100644
--- a/Build/source/utils/autosp/TLpatches/patch-01-binary-write
+++ b/Build/source/utils/autosp/TLpatches/patch-01-binary-write
@@ -1,6 +1,6 @@
-diff -ur autosp-2019-01-08/autosp.c autosp-src/autosp.c
---- autosp-2019-01-08/autosp.c Tue Jan 08 22:27:17 2019
-+++ autosp-src/autosp.c Thu Jan 10 07:39:06 2019
+diff -ur autosp-2019-08-26/autosp.c autosp-src/autosp.c
+--- autosp-2019-08-26/autosp.c Mon Aug 26 20:33:06 2019
++++ autosp-src/autosp.c Thu Aug 29 08:52:49 2019
@@ -183,7 +183,7 @@
}
else
@@ -19,9 +19,9 @@ diff -ur autosp-2019-01-08/autosp.c autosp-src/autosp.c
if (logfile == NULL)
{ printf ("Can't open %s\n", logfilename);
exit (EXIT_FAILURE);
-diff -ur autosp-2019-01-08/rebar.c autosp-src/rebar.c
---- autosp-2019-01-08/rebar.c Tue Jan 08 22:28:27 2019
-+++ autosp-src/rebar.c Thu Jan 10 07:39:23 2019
+diff -ur autosp-2019-08-26/rebar.c autosp-src/rebar.c
+--- autosp-2019-08-26/rebar.c Tue Jan 08 22:28:27 2019
++++ autosp-src/rebar.c Thu Aug 29 08:53:39 2019
@@ -264,7 +264,7 @@
else
append (outfilename, &outfilename_n, ".aspc", sizeof (outfilename));
@@ -31,15 +31,15 @@ diff -ur autosp-2019-01-08/rebar.c autosp-src/rebar.c
if (outfile == NULL)
{ fprintf (stderr,"Can't open %s\n", outfilename);
exit (EXIT_FAILURE);
-diff -ur autosp-2019-01-08/spacing_note.c autosp-src/spacing_note.c
---- autosp-2019-01-08/spacing_note.c Wed May 16 22:35:31 2018
-+++ autosp-src/spacing_note.c Thu Jan 10 08:29:36 2019
+diff -ur autosp-2019-08-26/spacing_note.c autosp-src/spacing_note.c
+--- autosp-2019-08-26/spacing_note.c Wed May 16 22:35:31 2018
++++ autosp-src/spacing_note.c Thu Aug 29 08:56:07 2019
@@ -30,7 +30,7 @@
update_global_skip (n);
/* commas will be discarded by filter_output (i) */
if (*s == '.' && new_beaming == 0 && !dottedbeamnotes)
- spacing = spacing * 1.50;
-+ spacing = (int)(spacing * 1.50);
++ spacing = (int)(spacing * 1.50);
else if ( (*s == '^' || *s == '_' || *s == '=' || *s == '>')
&& !vspacing_active[i] /* is additional spacing needed? */
)
@@ -61,9 +61,9 @@ diff -ur autosp-2019-01-08/spacing_note.c autosp-src/spacing_note.c
t = strpbrk (s+1, "{\\&|$"); /* collective coding? */
if (*t == '{') /* {...} */
-diff -ur autosp-2019-01-08/tex2aspc.c autosp-src/tex2aspc.c
---- autosp-2019-01-08/tex2aspc.c Tue Jan 08 22:28:57 2019
-+++ autosp-src/tex2aspc.c Thu Jan 10 07:39:45 2019
+diff -ur autosp-2019-08-26/tex2aspc.c autosp-src/tex2aspc.c
+--- autosp-2019-08-26/tex2aspc.c Wed Feb 13 07:13:26 2019
++++ autosp-src/tex2aspc.c Thu Aug 29 08:56:48 2019
@@ -342,7 +342,7 @@
append (outfilename, &outfilename_n, ".aspc", sizeof (outfilename));
}
diff --git a/Build/source/utils/autosp/autosp-src/ChangeLog b/Build/source/utils/autosp/autosp-src/ChangeLog
index 2fae8e507ac..36e5b992be8 100644
--- a/Build/source/utils/autosp/autosp-src/ChangeLog
+++ b/Build/source/utils/autosp/autosp-src/ChangeLog
@@ -1,5 +1,10 @@
AUTOSP
+2019-08-26
+
+ scale notes when \setsize instrument has the spacing staff
+ allow for \startmuflex\startpiece...
+
2019-01-08
adjust cspacing for new beaming after first collective beam note
diff --git a/Build/source/utils/autosp/autosp-src/autosp.c b/Build/source/utils/autosp/autosp-src/autosp.c
index 8737eb1259e..48349a8531f 100644
--- a/Build/source/utils/autosp/autosp-src/autosp.c
+++ b/Build/source/utils/autosp/autosp-src/autosp.c
@@ -1,4 +1,4 @@
-char version[12] = "2019-01-08";
+char version[12] = "2019-08-26";
/* Copyright (C) 2014-19 R. D. Tennent School of Computing,
* Queen's University, rdt@cs.queensu.ca
@@ -108,7 +108,7 @@ int main (int argc, char *argv[])
};
printf ("This is autosp, version %s.\n", version);
- printf ("Copyright (C) 2014-18 R. D. Tennent\n" );
+ printf ("Copyright (C) 2014-19 R. D. Tennent\n" );
printf ("School of Computing, Queen's University, rdt@cs.queensu.ca\n" );
printf ("License GNU GPL version 2 or later <http://gnu.org/licences/gpl.html>.\n" );
printf ("There is NO WARRANTY, to the extent permitted by law.\n\n" );
diff --git a/Build/source/utils/autosp/autosp-src/configure b/Build/source/utils/autosp/autosp-src/configure
index 92a4971a8c4..eaa6a32e9b8 100755
--- a/Build/source/utils/autosp/autosp-src/configure
+++ b/Build/source/utils/autosp/autosp-src/configure
@@ -1,6 +1,6 @@
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for autosp 2019-01-08.
+# Generated by GNU Autoconf 2.69 for autosp 2019-08-26.
#
# Report bugs to <rdt@cs.queensu.ca>.
#
@@ -580,8 +580,8 @@ MAKEFLAGS=
# Identity of this package.
PACKAGE_NAME='autosp'
PACKAGE_TARNAME='autosp'
-PACKAGE_VERSION='2019-01-08'
-PACKAGE_STRING='autosp 2019-01-08'
+PACKAGE_VERSION='2019-08-26'
+PACKAGE_STRING='autosp 2019-08-26'
PACKAGE_BUGREPORT='rdt@cs.queensu.ca'
PACKAGE_URL=''
@@ -1265,7 +1265,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 autosp 2019-01-08 to adapt to many kinds of systems.
+\`configure' configures autosp 2019-08-26 to adapt to many kinds of systems.
Usage: $0 [OPTION]... [VAR=VALUE]...
@@ -1331,7 +1331,7 @@ fi
if test -n "$ac_init_help"; then
case $ac_init_help in
- short | recursive ) echo "Configuration of autosp 2019-01-08:";;
+ short | recursive ) echo "Configuration of autosp 2019-08-26:";;
esac
cat <<\_ACEOF
@@ -1422,7 +1422,7 @@ fi
test -n "$ac_init_help" && exit $ac_status
if $ac_init_version; then
cat <<\_ACEOF
-autosp configure 2019-01-08
+autosp configure 2019-08-26
generated by GNU Autoconf 2.69
Copyright (C) 2012 Free Software Foundation, Inc.
@@ -1845,7 +1845,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 autosp $as_me 2019-01-08, which was
+It was created by autosp $as_me 2019-08-26, which was
generated by GNU Autoconf 2.69. Invocation command line was
$ $0 $@
@@ -2708,7 +2708,7 @@ fi
# Define the identity of the package.
PACKAGE='autosp'
- VERSION='2019-01-08'
+ VERSION='2019-08-26'
cat >>confdefs.h <<_ACEOF
@@ -4974,7 +4974,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
# report actual input values of CONFIG_FILES etc. instead of their
# values after options handling.
ac_log="
-This file was extended by autosp $as_me 2019-01-08, which was
+This file was extended by autosp $as_me 2019-08-26, which was
generated by GNU Autoconf 2.69. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
@@ -5040,7 +5040,7 @@ _ACEOF
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
ac_cs_version="\\
-autosp config.status 2019-01-08
+autosp config.status 2019-08-26
configured by $0, generated by GNU Autoconf 2.69,
with options \\"\$ac_cs_config\\"
diff --git a/Build/source/utils/autosp/autosp-src/configure.ac b/Build/source/utils/autosp/autosp-src/configure.ac
index c6e7d91fce5..ed1c6a1c8ea 100644
--- a/Build/source/utils/autosp/autosp-src/configure.ac
+++ b/Build/source/utils/autosp/autosp-src/configure.ac
@@ -1,5 +1,5 @@
AC_PREREQ(2.63)
-AC_INIT([autosp],[2019-01-08],[rdt@cs.queensu.ca])
+AC_INIT([autosp],[2019-08-26],[rdt@cs.queensu.ca])
AC_CONFIG_AUX_DIR([.])
AM_INIT_AUTOMAKE
AC_CONFIG_HEADERS([config.h])
diff --git a/Build/source/utils/autosp/autosp-src/process_command.c b/Build/source/utils/autosp/autosp-src/process_command.c
index 9f1711ba24d..d2feb5ae19f 100644
--- a/Build/source/utils/autosp/autosp-src/process_command.c
+++ b/Build/source/utils/autosp/autosp-src/process_command.c
@@ -212,7 +212,7 @@ output_rests (void)
}
void initialize_notes ()
-{ int i;
+{ int i; int instrument = 0; int staff = 0;
if (debug)
{ fprintf (logfile, "\nEntering initialize_notes\n");
status_all ();
@@ -220,6 +220,16 @@ void initialize_notes ()
if ( nastaffs == 1 && spacing != MAX_SPACING && restbars > 0)
output_rests ();
+ fprintf (outfile, "\\scale");
+ do /* determine instrument for spacing_staff */
+ {
+ instrument++;
+ staff = staff + staffs[instrument];
+ }
+ while (staff < spacing_staff );
+ fprintf (outfile, "%s\n", instrument_size[instrument]);
+ oldspacing_staff = spacing_staff;
+
if (spacing == MAX_SPACING)
fprintf (outfile, "\\znotes");
else if (spacing == SP(1)+SP(2) || spacing == SP(1)+SP(2)+SP(4))
@@ -383,8 +393,9 @@ void generate_notes ()
{ int i;
bool xtuplet_flag;
while (true)
- { old_spacing = spacing;
+ { old_spacing = spacing;
spacing = MAX_SPACING;
+ spacing_staff = 0;
global_skip = 0;
nonvirtual_notes = false;
if (debug)
@@ -396,7 +407,12 @@ void generate_notes ()
{
spacings[i] = spacing_note (i);
if (spacings[i] < spacing)
+ {
spacing = spacings[i];
+ spacing_staff = i;
+ }
+ else if (spacings[i] == spacing && vspacing[spacing_staff] > 0)
+ spacing_staff = i;
}
if (appoggiatura)
{
@@ -410,8 +426,10 @@ void generate_notes ()
process_xtuplet ();
continue;
}
- if (spacing != old_spacing || spacing == MAX_SPACING)
- { if (old_spacing < MAX_SPACING)
+
+ if (spacing != old_spacing || spacing == MAX_SPACING || spacing_staff != oldspacing_staff)
+ {
+ if (old_spacing < MAX_SPACING)
terminate_notes ();
if (spacing == MAX_SPACING || nonvirtual_notes == false)
{
@@ -483,16 +501,38 @@ void process_command (char **ln)
while (*ln <= s) { putc (**ln, outfile); (*ln)++;}
}
+ else if ( prefix("\\setsize", *ln) )
+ { int n; char *p;
+ s = strpbrk (*ln, "123456789");
+ if ( s == NULL ) error ("\\setsize command unreadable.");
+ n = (int)(*s) - (int)('0'); /* instrument number */
+ s++;
+ if (*s == '}') s++;
+ if (*s == '{') s++;
+ t = strpbrk (s, " }\n");
+ if ( t == NULL ) error ("\\setsize command unreadable.");
+ instrument_size[n][0] = '\0';
+ p = instrument_size[n];
+ while (s < t)
+ { *p = *s;
+ p++; s++;
+ }
+ *p = '\0';
+ if (debug)
+ fprintf (logfile, "instrument_size[%d] = %s\n", n, instrument_size[n]);
+ while (*ln <= s) { putc (**ln, outfile); (*ln)++;}
+ }
+
else if ( prefix("\\startpiece", *ln) )
{
if (!TransformNotesDefined) /* create default TransformNotes2: */
{ int i, j;
t = TransformNotes2;
- nstaffs = 1;
+ nstaffs = 1;
sprintf (t, "#%1i", nstaffs+1); t = t+2;
for (j=2; j <= staffs[1]; j++)
{ nstaffs++; sprintf (t, "|#%1i", nstaffs+1); t = t+3;
- active[nstaffs] = true;
+ active[nstaffs] = true;
}
for (i=2; i <= ninstr; i++)
{ nstaffs++; sprintf (t, "&#%1i", nstaffs+1); t = t+3;
@@ -956,12 +996,18 @@ void process_command (char **ln)
else if ( prefix ("\\end ", *ln)
|| prefix ("\\end%", *ln)
+ || prefix ("\\end\n", *ln)
|| prefix ("\\end{document}", *ln) )
{
fprintf (outfile, "%s", *ln);
exit(0);
}
+ else if ( prefix ("\\startmuflex", *ln) )
+ {
+ fputs ("\\startmuflex", outfile);
+ *ln = *ln + 12;
+ }
else /* everything else */
{
diff --git a/Build/source/utils/autosp/autosp-src/process_command.h b/Build/source/utils/autosp/autosp-src/process_command.h
index 2ee44262c8f..ed50475b944 100644
--- a/Build/source/utils/autosp/autosp-src/process_command.h
+++ b/Build/source/utils/autosp/autosp-src/process_command.h
@@ -32,6 +32,8 @@ int beaming[MAX_STAFFS]; /* spacing for beamed notes */
int new_beaming;
int semiauto_beam_notes[MAX_STAFFS]; /* semi-automatic beam notes */
+int spacing_staff; /* staff that determines current spacing */
+
/* save-restore state for a staff; used in process_xtuplet */
int beamingi;
char *currenti;
@@ -54,6 +56,8 @@ int global_skip;
/* = 6 for six commas */
+char s[SHORT_LEN]; /* string for ps() */
+char *s_n;
char *ps(int spacing);
void note_segment (char *s);
void status (int i);
diff --git a/Build/source/utils/autosp/autosp-src/process_score.c b/Build/source/utils/autosp/autosp-src/process_score.c
index 845e39022b1..f1c30d412bd 100644
--- a/Build/source/utils/autosp/autosp-src/process_score.c
+++ b/Build/source/utils/autosp/autosp-src/process_score.c
@@ -24,6 +24,7 @@ void process_score ()
staffs[i] = 1;
active[i] = true;
bar_rest[i] = false;
+ append (instrument_size[i], NULL, "\\normalvalue", SHORT_LEN);
}
spacing = MAX_SPACING;
restbars = 0;
@@ -31,6 +32,7 @@ void process_score ()
nstaffs = 1; /* number of staffs */
nastaffs = 1; /* number of active staffs; */
old_spacing = MAX_SPACING;
+ oldspacing_staff = 0;
Changeclefs = false; /* output \Changeclefs after \def\atnextbar */
TransformNotes2[0] = '\0';
diff --git a/Build/source/utils/autosp/autosp-src/process_score.h b/Build/source/utils/autosp/autosp-src/process_score.h
index 35043c62719..34f790b1878 100644
--- a/Build/source/utils/autosp/autosp-src/process_score.h
+++ b/Build/source/utils/autosp/autosp-src/process_score.h
@@ -16,9 +16,12 @@ int ninstr; /* number of instruments */
int nstaffs; /* number of staffs */
int nastaffs; /* number of active staffs; */
int old_spacing;
+int oldspacing_staff;
bool Changeclefs; /* output \Changeclefs after \def\atnextbar */
char TransformNotes2[SHORT_LEN]; /* 2nd argument of \TransformNotes */
bool TransformNotesDefined;
+char instrument_size[MAX_STAFFS][SHORT_LEN];
+ /* instrument size as set by setsize or by default ("\\@one") */
char line[LINE_LEN]; /* line of input */
diff --git a/Build/source/utils/autosp/autosp-src/spacing_note.c b/Build/source/utils/autosp/autosp-src/spacing_note.c
index 631ff1ba5ba..ac3ee2f0b5b 100644
--- a/Build/source/utils/autosp/autosp-src/spacing_note.c
+++ b/Build/source/utils/autosp/autosp-src/spacing_note.c
@@ -30,7 +30,7 @@ int collective_note (int i)
update_global_skip (n);
/* commas will be discarded by filter_output (i) */
if (*s == '.' && new_beaming == 0 && !dottedbeamnotes)
- spacing = (int)(spacing * 1.50);
+ spacing = (int)(spacing * 1.50);
else if ( (*s == '^' || *s == '_' || *s == '=' || *s == '>')
&& !vspacing_active[i] /* is additional spacing needed? */
)
diff --git a/Build/source/utils/autosp/autosp-src/status.c b/Build/source/utils/autosp/autosp-src/status.c
index 400c14188b3..422bb2798c5 100644
--- a/Build/source/utils/autosp/autosp-src/status.c
+++ b/Build/source/utils/autosp/autosp-src/status.c
@@ -2,10 +2,7 @@
char *ps(int spacing)
/* convert spacing value to note value(s) */
-{ char *s = malloc(SHORT_LEN);
- char *s_n;
- if (s == NULL) error ("Not enough memory");
- s_n = s;
+{ s_n = s;
*s = '\0';
if (spacing == MAX_SPACING)
sprintf(s, "MAX_SPACING");
@@ -57,6 +54,8 @@ status_spacing (void)
{
fprintf (logfile, "spacing=%s\n", ps(spacing));
fprintf (logfile, "old_spacing=%s\n", ps(old_spacing));
+ fprintf (logfile, "spacing_staff=%d\n", spacing_staff);
+ fprintf (logfile, "oldspacing_staff=%d\n", oldspacing_staff);
}
void
diff --git a/Build/source/utils/autosp/configure b/Build/source/utils/autosp/configure
index cd40cdbe90a..a1f4d0221b2 100755
--- a/Build/source/utils/autosp/configure
+++ b/Build/source/utils/autosp/configure
@@ -1,6 +1,6 @@
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for autosp (TeX Live) 2019-01-08.
+# Generated by GNU Autoconf 2.69 for autosp (TeX Live) 2019-08-26.
#
# Report bugs to <tex-k@tug.org>.
#
@@ -580,8 +580,8 @@ MAKEFLAGS=
# Identity of this package.
PACKAGE_NAME='autosp (TeX Live)'
PACKAGE_TARNAME='autosp--tex-live-'
-PACKAGE_VERSION='2019-01-08'
-PACKAGE_STRING='autosp (TeX Live) 2019-01-08'
+PACKAGE_VERSION='2019-08-26'
+PACKAGE_STRING='autosp (TeX Live) 2019-08-26'
PACKAGE_BUGREPORT='tex-k@tug.org'
PACKAGE_URL=''
@@ -1278,7 +1278,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 autosp (TeX Live) 2019-01-08 to adapt to many kinds of systems.
+\`configure' configures autosp (TeX Live) 2019-08-26 to adapt to many kinds of systems.
Usage: $0 [OPTION]... [VAR=VALUE]...
@@ -1345,7 +1345,7 @@ fi
if test -n "$ac_init_help"; then
case $ac_init_help in
- short | recursive ) echo "Configuration of autosp (TeX Live) 2019-01-08:";;
+ short | recursive ) echo "Configuration of autosp (TeX Live) 2019-08-26:";;
esac
cat <<\_ACEOF
@@ -1442,7 +1442,7 @@ fi
test -n "$ac_init_help" && exit $ac_status
if $ac_init_version; then
cat <<\_ACEOF
-autosp (TeX Live) configure 2019-01-08
+autosp (TeX Live) configure 2019-08-26
generated by GNU Autoconf 2.69
Copyright (C) 2012 Free Software Foundation, Inc.
@@ -1865,7 +1865,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 autosp (TeX Live) $as_me 2019-01-08, which was
+It was created by autosp (TeX Live) $as_me 2019-08-26, which was
generated by GNU Autoconf 2.69. Invocation command line was
$ $0 $@
@@ -3789,7 +3789,7 @@ fi
# Define the identity of the package.
PACKAGE='autosp--tex-live-'
- VERSION='2019-01-08'
+ VERSION='2019-08-26'
cat >>confdefs.h <<_ACEOF
@@ -5973,7 +5973,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
# report actual input values of CONFIG_FILES etc. instead of their
# values after options handling.
ac_log="
-This file was extended by autosp (TeX Live) $as_me 2019-01-08, which was
+This file was extended by autosp (TeX Live) $as_me 2019-08-26, which was
generated by GNU Autoconf 2.69. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
@@ -6030,7 +6030,7 @@ _ACEOF
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
ac_cs_version="\\
-autosp (TeX Live) config.status 2019-01-08
+autosp (TeX Live) config.status 2019-08-26
configured by $0, generated by GNU Autoconf 2.69,
with options \\"\$ac_cs_config\\"
diff --git a/Build/source/utils/autosp/configure.ac b/Build/source/utils/autosp/configure.ac
index 4a93ff6a901..e1503f51cdf 100644
--- a/Build/source/utils/autosp/configure.ac
+++ b/Build/source/utils/autosp/configure.ac
@@ -7,7 +7,7 @@ dnl This file is free software; the copyright holder
dnl gives unlimited permission to copy and/or distribute it,
dnl with or without modifications, as long as this notice is preserved.
dnl
-m4_define([autosp_version], [2019-01-08])[]dnl using unmodified autosp source
+m4_define([autosp_version], [2019-08-26])[]dnl using unmodified autosp source
AC_INIT([autosp (TeX Live)], autosp_version, [tex-k@tug.org])
AC_PREREQ([2.65])
AC_CONFIG_SRCDIR([autosp-src/autosp.c])