Skip to content

Commit

Permalink
Check in 1.6.12
Browse files Browse the repository at this point in the history
  • Loading branch information
davidlst committed Apr 9, 2020
1 parent 0cc38fc commit 2a19a5e
Show file tree
Hide file tree
Showing 18 changed files with 315 additions and 174 deletions.
20 changes: 10 additions & 10 deletions configure
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.69 for openlitespeed 1.6.11.
# Generated by GNU Autoconf 2.69 for openlitespeed 1.6.12.
#
# Report bugs to <[email protected]>.
#
Expand Down Expand Up @@ -590,8 +590,8 @@ MAKEFLAGS=
# Identity of this package.
PACKAGE_NAME='openlitespeed'
PACKAGE_TARNAME='openlitespeed'
PACKAGE_VERSION='1.6.11'
PACKAGE_STRING='openlitespeed 1.6.11'
PACKAGE_VERSION='1.6.12'
PACKAGE_STRING='openlitespeed 1.6.12'
PACKAGE_BUGREPORT='[email protected]'
PACKAGE_URL='http://www.litespeedtech.com/'

Expand Down Expand Up @@ -1409,7 +1409,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 openlitespeed 1.6.11 to adapt to many kinds of systems.
\`configure' configures openlitespeed 1.6.12 to adapt to many kinds of systems.

Usage: $0 [OPTION]... [VAR=VALUE]...

Expand Down Expand Up @@ -1480,7 +1480,7 @@ fi

if test -n "$ac_init_help"; then
case $ac_init_help in
short | recursive ) echo "Configuration of openlitespeed 1.6.11:";;
short | recursive ) echo "Configuration of openlitespeed 1.6.12:";;
esac
cat <<\_ACEOF

Expand Down Expand Up @@ -1641,7 +1641,7 @@ fi
test -n "$ac_init_help" && exit $ac_status
if $ac_init_version; then
cat <<\_ACEOF
openlitespeed configure 1.6.11
openlitespeed configure 1.6.12
generated by GNU Autoconf 2.69

Copyright (C) 2012 Free Software Foundation, Inc.
Expand Down Expand Up @@ -2315,7 +2315,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 openlitespeed $as_me 1.6.11, which was
It was created by openlitespeed $as_me 1.6.12, which was
generated by GNU Autoconf 2.69. Invocation command line was

$ $0 $@
Expand Down Expand Up @@ -3181,7 +3181,7 @@ fi

# Define the identity of the package.
PACKAGE='openlitespeed'
VERSION='1.6.11'
VERSION='1.6.12'


# Some tools Automake needs.
Expand Down Expand Up @@ -19624,7 +19624,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 openlitespeed $as_me 1.6.11, which was
This file was extended by openlitespeed $as_me 1.6.12, which was
generated by GNU Autoconf 2.69. Invocation command line was

CONFIG_FILES = $CONFIG_FILES
Expand Down Expand Up @@ -19691,7 +19691,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="\\
openlitespeed config.status 1.6.11
openlitespeed config.status 1.6.12
configured by $0, generated by GNU Autoconf 2.69,
with options \\"\$ac_cs_config\\"

Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ m4_include(ax_check_libudns.m4)
m4_include(ax_check_ip2location.m4)

dnl Process this file with autoconf to produce a configure script.
AC_INIT([openlitespeed],[1.6.11],[[email protected]],[openlitespeed],[http://www.litespeedtech.com/])
AC_INIT([openlitespeed],[1.6.12],[[email protected]],[openlitespeed],[http://www.litespeedtech.com/])
AM_INIT_AUTOMAKE([1.0 foreign no-define subdir-objects])


Expand Down
2 changes: 1 addition & 1 deletion dist/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.6.11
1.6.12
2 changes: 1 addition & 1 deletion dist/add-ons/webcachemgr/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.11
1.12
6 changes: 5 additions & 1 deletion dist/add-ons/webcachemgr/bootstrap.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

/* * *********************************************
/** *********************************************
* LiteSpeed Web Server Cache Manager
* @Author: LiteSpeed Technologies, Inc. (https://www.litespeedtech.com)
* @Copyright: (c) 2018
Expand All @@ -12,4 +12,8 @@

require_once __DIR__ . '/autoloader.php';

/**
* @noinspection PhpUnhandledExceptionInspection
* @noinspection PhpUndefinedVariableInspection
*/
Context::initialize(new RootPanelContextOption($panelName));
3 changes: 2 additions & 1 deletion dist/add-ons/webcachemgr/bootstrap_cli.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

/* * *********************************************
/** *********************************************
* LiteSpeed Web Server Cache Manager
* @Author: LiteSpeed Technologies, Inc. (https://www.litespeedtech.com)
* @Copyright: (c) 2018
Expand All @@ -15,5 +15,6 @@

date_default_timezone_set('UTC');

/** @noinspection PhpUnhandledExceptionInspection */
Context::initialize(new RootCLIContextOption());
CliController::run();
2 changes: 1 addition & 1 deletion dist/add-ons/webcachemgr/src/LSCMException.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

/* * ******************************************
/** ******************************************
* LiteSpeed Web Server Cache Manager
* @author: LiteSpeed Technologies, Inc. (https://www.litespeedtech.com)
* @copyright: (c) 2018
Expand Down
Loading

0 comments on commit 2a19a5e

Please sign in to comment.