From 103e4c58633f210d7c3203cae121ba5b5123afa6 Mon Sep 17 00:00:00 2001 From: Andreas Cadhalpun Date: Mon, 2 Feb 2015 00:20:18 +0100 Subject: stop embedding the build date Theis makes the build binary reproducible. Signed-off-by: Andreas Cadhalpun Signed-off-by: Michael Niedermayer --- doc/t2h.pm | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'doc/t2h.pm') diff --git a/doc/t2h.pm b/doc/t2h.pm index ca778422fa..5efb2da483 100644 --- a/doc/t2h.pm +++ b/doc/t2h.pm @@ -186,6 +186,23 @@ EOT } texinfo_register_formatting_function('begin_file', \&ffmpeg_begin_file); +sub ffmpeg_program_string($) +{ + my $self = shift; + if (defined($self->get_conf('PROGRAM')) + and $self->get_conf('PROGRAM') ne '' + and defined($self->get_conf('PACKAGE_URL'))) { + return $self->convert_tree( + $self->gdt('This document was generated using @uref{{program_homepage}, @emph{{program}}}.', + { 'program_homepage' => $self->get_conf('PACKAGE_URL'), + 'program' => $self->get_conf('PROGRAM') })); + } else { + return $self->convert_tree( + $self->gdt('This document was generated automatically.')); + } +} +texinfo_register_formatting_function('program_string', \&ffmpeg_program_string); + # Customized file ending sub ffmpeg_end_file($) { -- cgit v1.2.3