# settings.txt # # Copyright (C) 2023, 2024 Balthasar SzczepaƄski # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see . _version: 1.0.0y _SHEBANG: #!$0 _PERL_STR: '@_ESCAPE($0,')' _PERL_USE_2: use $0 $1; _PERL_CONSTANT: use constant $0 => $1; _PERL_CONSTANT_STR: @_PERL_CONSTANT($0,@_PERL_STR($1)) _PERL_OUR: our $0 = $1; _PERL_OUR_STR: @_PERL_OUR(\$$0,@_PERL_STR($1)) MAKE_TARGET = TARGET = $target MAKE_CHMOD = CHMOD=$chmod MAKE_CP = CP =$cp MAKE_MKDIR = MKDIR=$mkdir MAKE_PERL = PERL =$perl MAKE_RM = RM =$rm MAKE_BIN_PATH = BIN_PATH = $bin_path MAKE_LIB_PATH = LIB_PATH = $lib_path PERL_LIB = @_PERL_USE_2(lib, @_PERL_STR($lib_path)) PERL_EXPORT_VERSION = @_PERL_OUR_STR( VERSION, $_version) PERL_PATH_SEPARATOR = @_PERL_CONSTANT_STR( PATH_SEPARATOR, $_PATH_SEPARATOR) PERL_GZIP = @_PERL_CONSTANT_STR( GZIP, $gzip) PERL_LOG_SIZE_LIMIT = @_PERL_CONSTANT( LOG_SIZE_LIMIT , $log_size_limit) PERL_LOGS_UNCOMPRESSED = @_PERL_CONSTANT( LOGS_UNCOMPRESSED, $logs_uncompressed) PERL_LOGS_TOTAL = @_PERL_CONSTANT( LOGS_TOTAL , $logs_total) RUN_PERL = @_SHEBANG($perl)