Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Xavier Bachelot
lemonldap-ng
Commits
cd600986
Commit
cd600986
authored
Oct 19, 2009
by
Yadd
Browse files
* Apache-1.3 is not supported in all Debian architectures
* CGI must not require Sys::Syslog to be installed
parent
ec15f539
Changes
2
Hide whitespace changes
Inline
Side-by-side
build/lemonldap-ng/debian/control
View file @
cd600986
...
...
@@ -29,7 +29,7 @@ Description: Lemonldap::NG Web-SSO system documentation
Package: liblemonldap-ng-handler-perl
Architecture: all
Depends: ${misc:Depends}, libapache-session-perl, libwww-perl, libcache-cache-perl, liblemonldap-ng-conf-perl (= ${binary:Version}), libapache2-mod-perl2
| libapache-mod-perl
, liburi-perl
Depends: ${misc:Depends}, libapache-session-perl, libwww-perl, libcache-cache-perl, liblemonldap-ng-conf-perl (= ${binary:Version}), libapache2-mod-perl2, liburi-perl
Suggests: liblemonldap-ng-portal-perl
Description: Lemonldap::NG Apache module part
Lemonldap::NG is a complete Web-SSO system that can run with reverse-proxies
...
...
modules/lemonldap-ng-common/lib/Lemonldap/NG/Common/CGI.pm
View file @
cd600986
...
...
@@ -220,7 +220,8 @@ sub startSyslog {
my
$self
=
shift
;
return
if
(
$self
->
{
_syslog
}
);
eval
{
use
Sys::
Syslog
;
require
Sys::
Syslog
;
Sys::
Syslog
->
import
('
:standard
');
openlog
(
'
lemonldap-ng
',
'
ndelay
',
$self
->
{
syslog
}
);
};
$self
->
abort
(
"
Unable to use syslog
",
$@
)
if
(
$@
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment