dotgnu-pnet-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[dotgnu-pnet-commits] pnet ChangeLog configure.in ilgac/ilgac.c


From: Klaus Treichel
Subject: [dotgnu-pnet-commits] pnet ChangeLog configure.in ilgac/ilgac.c
Date: Tue, 20 Feb 2007 17:00:52 +0000

CVSROOT:        /cvsroot/dotgnu-pnet
Module name:    pnet
Changes by:     Klaus Treichel <ktreichel>      07/02/20 17:00:52

Modified files:
        .              : ChangeLog configure.in 
        ilgac          : ilgac.c 

Log message:
        2007-02-20  Klaus Treichel  <address@hidden>
        
                * configure.in: Remove the .libs from the library search path 
for libjit
                because libtool will handle this (Broke build on Msys with jit 
enabled).
        
                * ilgac/ilgac.c: Fix build on systems where symlinks are not 
available. The
                assembly version is ILUInt16 and not ILUInt32.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/pnet/ChangeLog?cvsroot=dotgnu-pnet&r1=1.3425&r2=1.3426
http://cvs.savannah.gnu.org/viewcvs/pnet/configure.in?cvsroot=dotgnu-pnet&r1=1.223&r2=1.224
http://cvs.savannah.gnu.org/viewcvs/pnet/ilgac/ilgac.c?cvsroot=dotgnu-pnet&r1=1.3&r2=1.4

Patches:
Index: ChangeLog
===================================================================
RCS file: /cvsroot/dotgnu-pnet/pnet/ChangeLog,v
retrieving revision 1.3425
retrieving revision 1.3426
diff -u -b -r1.3425 -r1.3426
--- ChangeLog   19 Feb 2007 20:15:37 -0000      1.3425
+++ ChangeLog   20 Feb 2007 17:00:52 -0000      1.3426
@@ -1,3 +1,11 @@
+2007-02-20  Klaus Treichel  <address@hidden>
+
+       * configure.in: Remove the .libs from the library search path for libjit
+       because libtool will handle this (Broke build on Msys with jit enabled).
+
+       * ilgac/ilgac.c: Fix build on systems where symlinks are not available. 
The
+       assembly version is ILUInt16 and not ILUInt32.
+
 2007-02-19  Klaus Treichel  <address@hidden>
 
        * configure.in: Fix build on cygwin by moving the check for windows to 
the

Index: configure.in
===================================================================
RCS file: /cvsroot/dotgnu-pnet/pnet/configure.in,v
retrieving revision 1.223
retrieving revision 1.224
diff -u -b -r1.223 -r1.224
--- configure.in        19 Feb 2007 20:15:37 -0000      1.223
+++ configure.in        20 Feb 2007 17:00:52 -0000      1.224
@@ -157,7 +157,7 @@
 
 AC_DEFUN([AC_SEARCH_LIBJIT], [
        AC_MSG_CHECKING([location of libjit])
-       AC_LIBJIT(../libjit/include/jit,jit.h, -ljit -L../../libjit/jit/.libs, 
-I../../libjit/include, "../libjit")
+       AC_LIBJIT(../libjit/include/jit,jit.h, -ljit -L../../libjit/jit, 
-I../../libjit/include, "../libjit")
        AC_LIBJIT(/usr/include/jit, jit.h, -ljit, -I/usr/include, "/usr")
        AC_LIBJIT(/usr/local/include/jit, jit.h, -ljit, -I/usr/local/include, 
"/usr/local")
 ])

Index: ilgac/ilgac.c
===================================================================
RCS file: /cvsroot/dotgnu-pnet/pnet/ilgac/ilgac.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -b -r1.3 -r1.4
--- ilgac/ilgac.c       2 Feb 2007 15:39:50 -0000       1.3
+++ ilgac/ilgac.c       20 Feb 2007 17:00:52 -0000      1.4
@@ -922,7 +922,7 @@
                char *path2 = BuildPath(cache, subdir, 0, assembly, extension);
                if(ILFileExists(path2, (char **)0))
                {
-                       ILUInt32 assemblyVersion[4];
+                       ILUInt16 assemblyVersion[4];
                        if(getAssemblyVersion(path2, assemblyVersion, 1, 0))
                        {
                                if(version[0] == assemblyVersion[0] &&




reply via email to

[Prev in Thread] Current Thread [Next in Thread]