Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have asked this question before or searched and seen others ask - why am I getting the warning "Subroutine mySub redefined at ../lib/Common.pm line x"? and you always get the answer you declared the sub twice in the same code. I created this test package:

ENTIRE FILE ---------------

package MyCommonPkg;

use strict;

sub thisSubroutineIsNotDefinedAnywhereElse{
}

1;

ENTIRE FILE ---------------

and I USE this package from a perl script, which uses other packages, that use this package also, and I get the warning:

Subroutine ThisSubroutineIsNotDefinedAnywhereElse redefined at ../lib/MyCommonPkg.pm line 19.

I promise I did not declare this sub anywhere else. So is this caused by a circular reference? How can I go about tracking the cause of this warning down and fixing?

share|improve this question
5  
Do you really declare package Common.pm? That seems like an error. – mob Aug 6 '10 at 23:00
Do you happen to have two packages with the same name? That can cause a namespace collision. Always name your packages for the file they are in (replacing / with ::, and stripping .pm). This can also happen if you have no namespace, which really means that you are in main. – Ether Aug 6 '10 at 23:37
no - i didn't declare it Common.pm. I just renamed things to get a pseudo code example up and typoed. I'll edit. – user210757 Aug 9 '10 at 13:44

8 Answers

Do you have a dependency loop? If Perl starts compiling your script and encounters a line like this:

use PackageA;

Perl pauses the compilation of your script; locates PackageA.pm and starts compiling it. If it encounters a line like this:

use PackageB;

Perl pauses the compilation of PackageA; locates PackageB.pm and starts compiling it. Normally, that would complete successfully, and Perl would go back to complete compiling PackageA and when that completes successfully it would go back to compiling your script and when that completes successfully it would start to execute the compiled opcodes.

However, if PackageB.pm contains this line:

use PackageA;

You might expect it would do nothing since Perl has already processed PackageA.pm but the problem is that it hasn't finished yet. So Perl will pause the compilation of PackageB and start compiling PackageA.pm again from the beginning. That could trigger the message you're seeing about subroutines in PackageA being redefined.

As a general rule, two packages should not both depend on each other. Sometimes however the loop is harder to locate because it is caused by a third package.

share|improve this answer
i think this is my problem - how to fix then? it's not a circular reference - i would see a circular reference as PackageA has "use PackageB;" and PackageB has "use PackageA;" Rather I have a script "main.pl" that uses PackageA and uses PackageB, and PackageA also uses PackageB. Shouldn't be anything wrong with that? – user210757 Aug 9 '10 at 14:47
Correct, there should be nothing wrong with that. – Grant McLean Aug 9 '10 at 21:51

You can't return from a mainline. That should just be 1. Like so:

#...
sub thisSubroutineIsNotDefinedAnywhereElse{
}

1;

You may hear people occassionally speaking about how modules have to "return 1", but that's how you do it. Not return 1;.

share|improve this answer
2  
return 1; and 1; is the same thing in Perl. You can also sub x { 1; } which is equal to sub x { return 1; } or sub x { $return_this; } – jmz Aug 7 '10 at 5:41
i agree with the comment - "1;" and "return 1;" are the same thing. also, unrelated to my question. – user210757 Aug 9 '10 at 13:46
1  
@jmz Error says 'Can't return outside a subroutine at - line 3.' 1 is or is not a subroutine? – Axeman Nov 16 '11 at 16:56

If you're on a system with a case-insensitive filesystem (Windows, and quite often OSX), and you do use Common in one file and use common in another, you can cause problems like this.

share|improve this answer
searched for occurrences of this and could not find any. very good to know though - thanks! – user210757 Aug 9 '10 at 14:40

Are you by any chance running this as a cgi-script on a web-server?

I find I need to restart the webserver to get around this warning.

share|improve this answer
no, just running from the command line – user210757 Feb 28 '11 at 15:36

When you have two subroutines with the same name in different packages, you ought to see this warning (when warnings are enabled) as "Subroutine new redefined....". The simple reason (which is very close to what Grant McLean said, but still not exactly) is you must get your packages skip the compiling phase and make then require. This way, the Perl namespace manager will not find any such conflicting symbols with same name at compile time, and if you modules do not have any errors, they will work just fine afterwards also.

Just make sure you implement

require Module;

statement rather than

use Module;

You should not see this warning again.

share|improve this answer
thanks, this solved my issue – Thariama Jan 31 at 13:03

I tried to use "package Common.pm" as a package name. The compiler gave me errors. Very kind of it eh? What version of Perl are you using? I tried it on 5.10.0 and 5.12.1.

Even if you can compile it is good practice to remove the .pm file. For Example;

File: some_package.pm;

package some_package;
use strict;

sub yadayadayada { ... }

1;
share|improve this answer
5.10.1 MS-win32-x86-mulithread – user210757 May 3 '12 at 14:06

Make sure you didn't forget this line at the end of your module:

1;

I know it's been included in a few of the examples here, but I mention it because it is easy to overlook, and in my case it turned out to be the sole cause of the errors!

share|improve this answer

This sounds like a problem caused by circular dependencies. Here is how to track it down. If your problem class looks like this:

package AlientPlanet;
use Dinosaurs;
sub has_dinosaurs {...}
1;

Then change your example to look like this:

package AlienPlanet;
sub has_dinosaurs {...}     # <-- swap
use Dinosaurs;              # <-- swap
1;

Now compile your code with Carp::Always like this:

⚡ perl -MCarp::Always -c lib/AlienPlanet.pm                                                                                                            
Subroutine has_dinosaurs redefined at lib/AlienPlanet.pm line 4.
    require AlienPlanet.pm called at lib/Dinosaurs.pm line 4
    Dinosaurs::BEGIN() called at lib/AlienPlanet.pm line 4
    eval {...} called at lib/AlienPlanet.pm line 4
    require Dinosaurs.pm called at lib/AlienPlanet.pm line 5
    AlienPlanet::BEGIN() called at lib/AlienPlanet.pm line 4
    eval {...} called at lib/AlienPlanet.pm line 4
lib/AlienPlanet.pm syntax OK

Now that you have a stacktrace you can see where the loop is. The quick and dirty solution is to use Class::Load in Dinosaurs.pm.

For a more detailed explanation try my blog post.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.