|
From: Christian G. <phi...@us...> - 2002-09-14 20:20:33
|
Update of /cvsroot/perl-xml/XML-LibXML-Common
In directory usw-pr-cvs1:/tmp/cvs-serv14154
Modified Files:
Changes Makefile.PL README
Log Message:
Modified Files:
Changes README
+ whitespces, email and version notes
Common.pm
- typos
Makefile.PL
+ HPUX fix (?)
Index: Changes
===================================================================
RCS file: /cvsroot/perl-xml/XML-LibXML-Common/Changes,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -d -r1.1.1.1 -r1.2
--- Changes 2 Sep 2002 09:15:16 -0000 1.1.1.1
+++ Changes 14 Sep 2002 20:20:30 -0000 1.2
@@ -5,4 +5,4 @@
0.10 Sat Aug 31 20:00:00 2002
- implemented encoding functions
- - libxml/ libgdome conform implementation
+ - libxml/ libgdome conform implementation
Index: Makefile.PL
===================================================================
RCS file: /cvsroot/perl-xml/XML-LibXML-Common/Makefile.PL,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -d -r1.1.1.1 -r1.2
--- Makefile.PL 2 Sep 2002 09:15:16 -0000 1.1.1.1
+++ Makefile.PL 14 Sep 2002 20:20:30 -0000 1.2
@@ -294,14 +294,14 @@
my $libs = $is_Win32 ? " $lib.lib " : "-l$lib";
# my $libs = "-l$lib";
if ($is_Win32) {
- $result = try_link(<<"SRC", $libs);
+ $result = try_link(<<"SRC",undef );
#include <windows.h>
#include <winsock.h>
blank() { return 0; }
int t() { ${func}(); return 0; }
SRC
unless ($result) {
- $result = try_link(<<"SRC", $libs);
+ $result = try_link(<<"SRC", undef);
#include <windows.h>
#include <winsock.h>
blank() { return 0; }
@@ -310,7 +310,7 @@
}
}
else {
- $result = try_link(<<"SRC", $libs);
+ $result = try_link(<<"SRC", undef);
blank() { return 0; }
int t() { ${func}(); return 0; }
SRC
Index: README
===================================================================
RCS file: /cvsroot/perl-xml/XML-LibXML-Common/README,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -d -r1.1.1.1 -r1.2
--- README 2 Sep 2002 09:15:16 -0000 1.1.1.1
+++ README 14 Sep 2002 20:20:30 -0000 1.2
@@ -1,10 +1,10 @@
XML::LibXML::Common version 0.10
-==============================
+================================
XML::LibXML::Common contains several constants and functions that
are shared by XML::LibXML, XML::GDOME and XML::LibXSLT (not all done, yet)
-This package is required at least for XML::LibXML 1.54 or later to
+This package is required at least for XML::LibXML 1.53 or later to
work properly.
the latest cvs can be found at sourceforge:
@@ -15,4 +15,4 @@
on a regular basis. but since i am offline from time to time it may take
up to a week before i will be able to answer.
-christian glahn
+christian glahn ( christian.glahn at uibk.ac.at )
|