Config.in (automake-1.16.2.tar.xz) | : | Config.in (automake-1.16.3.tar.xz) | ||
---|---|---|---|---|
skipping to change at line 19 | skipping to change at line 19 | |||
# This program is distributed in the hope that it will be useful, | # This program is distributed in the hope that it will be useful, | |||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | # but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |||
# GNU General Public License for more details. | # GNU General Public License for more details. | |||
# You should have received a copy of the GNU General Public License | # You should have received a copy of the GNU General Public License | |||
# along with this program. If not, see <https://www.gnu.org/licenses/>. | # along with this program. If not, see <https://www.gnu.org/licenses/>. | |||
package Automake::Config; | package Automake::Config; | |||
use strict; | ||||
use 5.006; | use 5.006; | |||
require Exporter; | use strict; | |||
use warnings FATAL => 'all'; | ||||
use Exporter; | ||||
our @ISA = qw (Exporter); | our @ISA = qw (Exporter); | |||
our @EXPORT = qw ($APIVERSION $PACKAGE $PACKAGE_BUGREPORT $VERSION | our @EXPORT = qw ($APIVERSION $PACKAGE $PACKAGE_BUGREPORT $VERSION | |||
$RELEASE_YEAR $libdir $perl_threads); | $RELEASE_YEAR $libdir $perl_threads); | |||
# Parameters set by configure. Not to be changed. NOTE: assign | # Parameters set by configure. Not to be changed. NOTE: assign | |||
# VERSION as string so that e.g. version 0.30 will print correctly. | # VERSION as string so that e.g. version 0.30 will print correctly. | |||
our $APIVERSION = '@APIVERSION@'; | our $APIVERSION = '@APIVERSION@'; | |||
our $PACKAGE = '@PACKAGE@'; | our $PACKAGE = '@PACKAGE@'; | |||
our $PACKAGE_BUGREPORT = '@PACKAGE_BUGREPORT@'; | our $PACKAGE_BUGREPORT = '@PACKAGE_BUGREPORT@'; | |||
End of changes. 2 change blocks. | ||||
2 lines changed or deleted | 4 lines changed or added |