Thread: [Arsperl-users] ARSperl 1.90 available on SF
Brought to you by:
jeffmurphy
|
From: Jeff M. <jcm...@je...> - 2007-03-13 13:41:03
|
Many thanks to Thilo for the tremendous amount of work he put into this release! http://arsperl.sourceforge.net/changes.html |
|
From: strauss <st...@re...> - 2007-03-14 19:39:55
|
If anyone gets an installer built for Windows that will work on Win2K3 Server, please post it somewhere for those of us who are way too busy swatting the incredible number of bugs in ITSM 7 to try to figure out how to compile it. Thanks in advance. Christopher Strauss, Ph.D. Remedy Database Administrator University of North Texas Computing Center http://remedy.unt.edu/helpdesk/ -----Original Message----- From: ars...@ar... [mailto:ars...@ar...] On Behalf Of Jeff Murphy Sent: Tuesday, March 13, 2007 8:41 AM To: ARSperl User Discussion Subject: [Arsperl-users] ARSperl 1.90 available on SF Many thanks to Thilo for the tremendous amount of work he put into this release! http://arsperl.sourceforge.net/changes.html ------------------------------------------------------------------------ - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys-and earn cash http://www.techsay.com/default.php?page=3Djoin.php&p=3Dsourceforge&CID=3D= DEVDE V _______________________________________________ Arsperl-users mailing list Ars...@ar... https://lists.sourceforge.net/lists/listinfo/arsperl-users |
|
From: <jar...@gm...> - 2007-03-14 20:10:39
|
Hi, Trying to get it compiled. Got a new laptop, and the compiler will not do what I tell it to do. I wlll try to install an ancient version of Visual C++ -- Jarl On 3/14/07, strauss <st...@re...> wrote: > If anyone gets an installer built for Windows that will work on Win2K3 > Server, please post it somewhere for those of us who are way too busy > swatting the incredible number of bugs in ITSM 7 to try to figure out > how to compile it. Thanks in advance. > > Christopher Strauss, Ph.D. > Remedy Database Administrator > University of North Texas Computing Center > http://remedy.unt.edu/helpdesk/ > -----Original Message----- > From: ars...@ar... > [mailto:ars...@ar...] On Behalf Of Jeff Murphy > Sent: Tuesday, March 13, 2007 8:41 AM > To: ARSperl User Discussion > Subject: [Arsperl-users] ARSperl 1.90 available on SF > > Many thanks to Thilo for the tremendous amount of work he put into this > release! > > http://arsperl.sourceforge.net/changes.html > > ------------------------------------------------------------------------ > - > Take Surveys. Earn Cash. Influence the Future of IT Join > SourceForge.net's Techsay panel and you'll get the chance to share your > opinions on IT & business topics through brief surveys-and earn cash > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDE > V > _______________________________________________ > Arsperl-users mailing list > Ars...@ar... > https://lists.sourceforge.net/lists/listinfo/arsperl-users > > > ------------------------------------------------------------------------- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share your > opinions on IT & business topics through brief surveys-and earn cash > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > _______________________________________________ > Arsperl-users mailing list > Ars...@ar... > https://lists.sourceforge.net/lists/listinfo/arsperl-users > |
|
From: Quanah Gibson-M. <qu...@st...> - 2007-04-06 22:26:32
|
--On Tuesday, March 13, 2007 9:40 AM -0400 Jeff Murphy
<jcm...@je...> wrote:
> Many thanks to Thilo for the tremendous amount
> of work he put into this release!
For the version 7 API, the file names of two libraries changed. This means
the Makefile.PL script does not correctly find them to link against when
running perl Makefile.PL.
The files in question are linked against at line 114:
$ARS_LIBS .= " -lpthread -licuuc -licui18n";
This should be:
$ARS_LIBS .= " -lpthread -licuucbmc -licui18nbmc";
The ability to link against the encryption libraries that I submitted for
the version 6 API does not appear to be present anymore in the v7 code for
ARSperl. That needs to be fixed as well (for all versions 6.0+)
--Quanah
--
Quanah Gibson-Mount
Senior Systems Software Developer
ITS/Shared Application Services
Stanford University
GnuPG Public Key: http://www.stanford.edu/~quanah/pgp.html
|
|
From: Quanah Gibson-M. <qu...@st...> - 2007-04-06 22:03:45
|
--On Friday, April 06, 2007 2:54 PM -0700 Quanah Gibson-Mount <qu...@st...> wrote: > > > --On Tuesday, March 13, 2007 9:40 AM -0400 Jeff Murphy > <jcm...@je...> wrote: > >> Many thanks to Thilo for the tremendous amount >> of work he put into this release! > > For the version 7 API, the file names of two libraries changed. This > means the Makefile.PL script does not correctly find them to link against > when running perl Makefile.PL. > > The files in question are linked against at line 114: > > $ARS_LIBS .= " -lpthread -licuuc -licui18n"; > > This should be: > > $ARS_LIBS .= " -lpthread -licuucbmc -licui18nbmc"; > > > > The ability to link against the encryption libraries that I submitted for > the version 6 API does not appear to be present anymore in the v7 code > for ARSperl. That needs to be fixed as well (for all versions 6.0+) Last, but not least, the resulting perl module is not built so that it can track its dependencies. I fixed this in my own build by doing: env LD_RUN_PATH=/opt/remedy/api/lib make so that it could then resolve its dependencies. --Quanah -- Quanah Gibson-Mount Senior Systems Software Developer ITS/Shared Application Services Stanford University GnuPG Public Key: http://www.stanford.edu/~quanah/pgp.html |