Changeset 107813 in vbox for trunk/src/libs/libpng-1.6.45/missing
- Timestamp:
- Jan 16, 2025 1:09:46 PM (4 months ago)
- svn:sync-xref-src-repo-rev:
- 166977
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libs/libpng-1.6.45/missing
r103316 r107813 1 1 #! /bin/sh 2 # Common wrapper for a few potentially missing GNU programs. 3 4 scriptversion=2018-03-07.03; # UTC 5 6 # Copyright (C) 1996-2021 Free Software Foundation, Inc. 2 # Common wrapper for a few potentially missing GNU and other programs. 3 4 scriptversion=2024-06-07.14; # UTC 5 6 # shellcheck disable=SC2006,SC2268 # we must support pre-POSIX shells 7 8 # Copyright (C) 1996-2024 Free Software Foundation, Inc. 7 9 # Originally written by Fran,cois Pinard <[email protected]>, 1996. 8 10 … … 55 57 56 58 Supported PROGRAM values: 57 aclocal autoconf autoheader autom4te automake makeinfo 58 bison yacc flex lex help2man 59 aclocal autoconf autogen autoheader autom4te automake autoreconf 60 bison flex help2man lex makeinfo perl yacc 59 61 60 62 Version suffixes to PROGRAM as well as the prefixes 'gnu-', 'gnu', and 61 63 'g' are ignored when checking the name. 62 64 63 Send bug reports to <[email protected]>." 65 Report bugs to <[email protected]>. 66 GNU Automake home page: <https://www.gnu.org/software/automake/>. 67 General help using GNU software: <https://www.gnu.org/gethelp/>." 64 68 exit $? 65 69 ;; 66 70 67 71 -v|--v|--ve|--ver|--vers|--versi|--versio|--version) 68 echo "missing $scriptversion (GNU Automake)"72 echo "missing (GNU Automake) $scriptversion" 69 73 exit $? 70 74 ;; … … 109 113 { 110 114 case $1 in 111 aclocal|automake )115 aclocal|automake|autoreconf) 112 116 echo "The '$1' program is part of the GNU Automake package:" 113 117 echo "<$gnu_software_URL/automake>" … … 123 127 echo "<$gnu_software_URL/m4/>" 124 128 echo "<$perl_URL>" 129 ;; 130 *) 131 : 125 132 ;; 126 133 esac … … 138 145 139 146 configure_deps="'configure.ac' or m4 files included by 'configure.ac'" 147 autoheader_deps="'acconfig.h'" 148 automake_deps="'Makefile.am'" 149 aclocal_deps="'acinclude.m4'" 140 150 case $normalized_program in 151 aclocal*) 152 echo "You should only need it if you modified $aclocal_deps or" 153 echo "$configure_deps." 154 ;; 141 155 autoconf*) 142 echo "You should only need it if you modified 'configure.ac'," 143 echo "or m4 files included by it." 144 program_details 'autoconf' 156 echo "You should only need it if you modified $configure_deps." 157 ;; 158 autogen*) 159 echo "You should only need it if you modified a '.def' or '.tpl' file." 160 echo "You may want to install the GNU AutoGen package:" 161 echo "<$gnu_software_URL/autogen/>" 145 162 ;; 146 163 autoheader*) 147 echo "You should only need it if you modified 'acconfig.h' or" 148 echo "$configure_deps." 149 program_details 'autoheader' 164 echo "You should only need it if you modified $autoheader_deps or" 165 echo "$configure_deps." 150 166 ;; 151 167 automake*) 152 echo "You should only need it if you modified 'Makefile.am' or" 153 echo "$configure_deps." 154 program_details 'automake' 155 ;; 156 aclocal*) 157 echo "You should only need it if you modified 'acinclude.m4' or" 158 echo "$configure_deps." 159 program_details 'aclocal' 160 ;; 161 autom4te*) 168 echo "You should only need it if you modified $automake_deps or" 169 echo "$configure_deps." 170 ;; 171 autom4te*) 162 172 echo "You might have modified some maintainer files that require" 163 173 echo "the 'autom4te' program to be rebuilt." 164 program_details 'autom4te' 174 ;; 175 autoreconf*) 176 echo "You should only need it if you modified $aclocal_deps or" 177 echo "$automake_deps or $autoheader_deps or $automake_deps or" 178 echo "$configure_deps." 165 179 ;; 166 180 bison*|yacc*) … … 168 182 echo "You may want to install the GNU Bison package:" 169 183 echo "<$gnu_software_URL/bison/>" 170 ;;171 lex*|flex*)172 echo "You should only need it if you modified a '.l' file."173 echo "You may want to install the Fast Lexical Analyzer package:"174 echo "<$flex_URL>"175 184 ;; 176 185 help2man*) … … 180 189 echo "<$gnu_software_URL/help2man/>" 181 190 ;; 191 lex*|flex*) 192 echo "You should only need it if you modified a '.l' file." 193 echo "You may want to install the Fast Lexical Analyzer package:" 194 echo "<$flex_URL>" 195 ;; 182 196 makeinfo*) 183 197 echo "You should only need it if you modified a '.texi' file, or" … … 190 204 echo "<$gnu_software_URL/make/>" 191 205 ;; 206 perl*) 207 echo "You should only need it to run GNU Autoconf, GNU Automake, " 208 echo " assorted other tools, or if you modified a Perl source file." 209 echo "You may want to install the Perl 5 language interpreter:" 210 echo "<$perl_URL>" 211 ;; 192 212 *) 193 213 echo "You might have modified some files without having the proper" … … 198 218 ;; 199 219 esac 220 program_details "$normalized_program" 200 221 } 201 222
Note:
See TracChangeset
for help on using the changeset viewer.