cvsuser 03/10/10 00:43:06
Modified: . MANIFEST
Added: config/init/hints freebsd.pl
Log:
parrot is not currently building on freebsd as it requires
pthread to be included in its libraries. The aix hint file
currently ensures pthread is included in the libs linked into parrot.
A proposed freebsd hint file is attached( a copy of the current aix
hint file )
Courtesy of Peter Sinnott
Revision Changes Path
1.456 +1 -0 parrot/MANIFEST
Index: MANIFEST
===================================================================
RCS file: /cvs/public/parrot/MANIFEST,v
retrieving revision 1.455
retrieving revision 1.456
diff -u -w -r1.455 -r1.456
--- MANIFEST 10 Oct 2003 01:44:38 -0000 1.455
+++ MANIFEST 10 Oct 2003 07:42:59 -0000 1.456
@@ -150,6 +150,7 @@
config/init/hints/aix.pl []
config/init/hints/cygwin.pl []
config/init/hints/darwin.pl []
+config/init/hints/freebsd.pl []
config/init/hints/linux.pl []
config/init/hints/mswin32.pl []
config/init/hints/os2.pl []
1.1 parrot/config/init/hints/freebsd.pl
Index: freebsd.pl
===================================================================
my $libs = Configure::Data->get('libs');
if ( $libs !~ /-lpthreads/ ) {
$libs .= ' -lpthreads';
}
Configure::Data->set(
libs => $libs,
);