From 3cb504397f3d727ac8bb12673204fc724c57a4d2 Mon Sep 17 00:00:00 2001 From: Jose Gonzalez Date: Tue, 23 Mar 2021 15:15:07 +0100 Subject: [PATCH] Solve issues for compilation --- pandora_server/lib/PandoraFMS/Goliat/GoliatCURL.pm | 4 ++-- pandora_server/lib/PandoraFMS/Goliat/GoliatConfig.pm | 4 ++-- pandora_server/lib/PandoraFMS/Goliat/GoliatLWP.pm | 4 ++-- pandora_server/lib/PandoraFMS/Goliat/GoliatTools.pm | 2 +- pandora_server/lib/PandoraFMS/WebServer.pm | 4 ++-- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/pandora_server/lib/PandoraFMS/Goliat/GoliatCURL.pm b/pandora_server/lib/PandoraFMS/Goliat/GoliatCURL.pm index 6f82ba3a00..63fe5ca5de 100755 --- a/pandora_server/lib/PandoraFMS/Goliat/GoliatCURL.pm +++ b/pandora_server/lib/PandoraFMS/Goliat/GoliatCURL.pm @@ -5,9 +5,9 @@ # This code is not free or OpenSource. Please don't redistribute. ################################################################################## -package Goliat::GoliatCURL; +package PandoraFMS::Goliat::GoliatCURL; -use Goliat::GoliatTools; +use PandoraFMS::Goliat::GoliatTools; use strict; use warnings; diff --git a/pandora_server/lib/PandoraFMS/Goliat/GoliatConfig.pm b/pandora_server/lib/PandoraFMS/Goliat/GoliatConfig.pm index 25ae73b30f..da3247c1e8 100755 --- a/pandora_server/lib/PandoraFMS/Goliat/GoliatConfig.pm +++ b/pandora_server/lib/PandoraFMS/Goliat/GoliatConfig.pm @@ -5,12 +5,12 @@ # This code is not free or OpenSource. Please don't redistribute. ########################################################################## -package Goliat::GoliatConfig; +package PandoraFMS::Goliat::GoliatConfig; use strict; use warnings; -use Goliat::GoliatTools; use PandoraFMS::Tools; +use PandoraFMS::Goliat::GoliatTools; require Exporter; our @ISA = ("Exporter"); diff --git a/pandora_server/lib/PandoraFMS/Goliat/GoliatLWP.pm b/pandora_server/lib/PandoraFMS/Goliat/GoliatLWP.pm index 7b66d2457e..3117ab1515 100755 --- a/pandora_server/lib/PandoraFMS/Goliat/GoliatLWP.pm +++ b/pandora_server/lib/PandoraFMS/Goliat/GoliatLWP.pm @@ -5,9 +5,9 @@ # This code is not free or OpenSource. Please don't redistribute. ################################################################################## -package Goliat::GoliatLWP; +package PandoraFMS::Goliat::GoliatLWP; -use Goliat::GoliatTools; +use PandoraFMS::Goliat::GoliatTools; use strict; use warnings; diff --git a/pandora_server/lib/PandoraFMS/Goliat/GoliatTools.pm b/pandora_server/lib/PandoraFMS/Goliat/GoliatTools.pm index 42e1cc0836..2c320477dc 100755 --- a/pandora_server/lib/PandoraFMS/Goliat/GoliatTools.pm +++ b/pandora_server/lib/PandoraFMS/Goliat/GoliatTools.pm @@ -5,7 +5,7 @@ # This code is not free or OpenSource. Please don't redistribute. ############################################################################### -package Goliat::GoliatTools; +package PandoraFMS::Goliat::GoliatTools; use 5.008004; use strict; diff --git a/pandora_server/lib/PandoraFMS/WebServer.pm b/pandora_server/lib/PandoraFMS/WebServer.pm index 6723848d9f..69ae4dbf93 100644 --- a/pandora_server/lib/PandoraFMS/WebServer.pm +++ b/pandora_server/lib/PandoraFMS/WebServer.pm @@ -36,8 +36,8 @@ use PandoraFMS::DB; use PandoraFMS::Core; use PandoraFMS::ProducerConsumerServer; -use Goliat::GoliatTools; -use Goliat::GoliatConfig; +use PandoraFMS::Goliat::GoliatTools; +use PandoraFMS::Goliat::GoliatConfig; # Inherits from PandoraFMS::ProducerConsumerServer our @ISA = qw(PandoraFMS::ProducerConsumerServer);