[BACK]Return to pari-2.0.21.beta.diff CVS log [TXT][DIR] Up to [local] / OpenXM / src / pari

Annotation of OpenXM/src/pari/pari-2.0.21.beta.diff, Revision 1.3

1.2       ohara       1: diff -ubBr pari-2.0.21.beta.orig/Configure pari-2.0.21.beta/Configure
                      2: --- pari-2.0.21.beta.orig/Configure    Sat Oct 28 04:04:49 2000
                      3: +++ pari-2.0.21.beta/Configure Wed Jul 13 13:25:47 2005
                      4: @@ -225,7 +225,8 @@
                      5:    irix*)    osname=irix;;
                      6:    fx2800)   arch=fx2800; osname=concentrix;;
                      7:    hp*)      arch=hppa; osname=hpux;;
                      8: -  freebsd|os2)  arch=ix86;;
                      9: +  freebsd)  arch=`uname -m`;;
                     10: +  os2)  arch=ix86;;
                     11:    ultrix)   arch=mips;;
                     12:    nextstep) arch=`file /bin/sh | sed 's/.*(for architecture \(.*\))/\1/'`;;
                     13:    osf1)     case "$5" in alpha) arch=alpha;; esac;;
1.1       ohara      14: diff -ubBr pari-2.0.21.beta.orig/config/Makefile.SH pari-2.0.21.beta/config/Makefile.SH
                     15: --- pari-2.0.21.beta.orig/config/Makefile.SH   Tue Mar 28 02:43:42 2000
                     16: +++ pari-2.0.21.beta/config/Makefile.SH        Fri Dec 10 20:13:19 2004
                     17: @@ -422,17 +422,17 @@
                     18:    plot-dyn)
                     19:      source="$src/graph/\$(PLOTFILE)"
                     20:      cflags="\$(DYNFLAGS) \$(PLOTCFLAGS)"
                     21: -    depend="$src/graph/rect.h libpari.dll libpari_dll.h libpari_globals.h libpari.dll"
                     22: +    depend="$src/graph/rect.h libpari.dll libpari_dll.h libpari.dll"
                     23:      ;;
                     24:    gp-dyn|gp_rl-dyn)
                     25:      source=$src\/`echo $dir | sed -e "s/dyn//"`\/`echo $f | cut -f1 -d-`.c
                     26:      cflags="\$(DYNFLAGS) -I$src/language \$(RLINCLUDE)"
                     27: -    depend="$src/language/anal.h $src/gp/gp.h ./paricfg.h libpari_dll.h libpari_globals.h libpari.dll"
                     28: +    depend="$src/language/anal.h $src/gp/gp.h ./paricfg.h libpari_dll.h libpari.dll"
                     29:      ;;
                     30:    gp_init-dyn|plotport-dyn)
                     31:      source=$src\/`echo $dir | sed -e "s/dyn//"`\/`echo $f | cut -f1 -d-`.c
                     32:      cflags="\$(DYNFLAGS) -I$src/graph"
                     33: -    depend="$src/graph/rect.h libpari_dll.h libpari_globals.h libpari.dll"
                     34: +    depend="$src/graph/rect.h libpari_dll.h libpari.dll"
                     35:      ;;
                     36:    init|es|sumiter)
                     37:      depend="$src/language/anal.h"
                     38: diff -ubBr pari-2.0.21.beta.orig/config/TOP_Make.SH pari-2.0.21.beta/config/TOP_Make.SH
                     39: --- pari-2.0.21.beta.orig/config/TOP_Make.SH   Wed Jul 12 03:12:27 2000
                     40: +++ pari-2.0.21.beta/config/TOP_Make.SH        Fri Dec 10 20:15:54 2004
                     41: @@ -48,7 +48,7 @@
                     42:        @echo " ctags                   Generate VI/VIM tags file in ./src"
                     43:        @echo " etags                   Generate Emacs  tags file in ./src"
                     44:
                     45: -gp all bench test-compat test-graphic install cleanobj cleantest install-bin install-doc install-lib-sta install-bin-sta dobench::
                     46: +gp all bench test-compat test-graphic install cleanobj cleantest install-bin install-doc install-lib-sta install-bin-sta dobench lib-sta install-lib-dyn install-data install-include install-man install-misc::
                     47:        cd $objdir; \$(MAKE) \$@
                     48:
                     49:  doc docps docpdf gpman cleandoc::
                     50: diff -ubBr pari-2.0.21.beta.orig/config/has_exp2.c pari-2.0.21.beta/config/has_exp2.c
                     51: --- pari-2.0.21.beta.orig/config/has_exp2.c    Thu Sep 16 22:46:59 1999
                     52: +++ pari-2.0.21.beta/config/has_exp2.c Fri Dec 10 20:13:19 2004
                     53: @@ -1,2 +1,2 @@
                     54:  #include <math.h>
                     55: -main(){double x=exp2(1.0);}
                     56: +main(){double x=exp2(2.017);}
                     57: diff -ubBr pari-2.0.21.beta.orig/src/headers/paricom.h pari-2.0.21.beta/src/headers/paricom.h
                     58: --- pari-2.0.21.beta.orig/src/headers/paricom.h        Fri Oct 27 20:21:34 2000
                     59: +++ pari-2.0.21.beta/src/headers/paricom.h     Fri Dec 10 20:13:19 2004
                     60: @@ -83,7 +83,9 @@
                     61:  #else
                     62:    BEGINEXTERN
                     63:      double exp2(double);
                     64: +#    ifndef __CYGWIN32__
                     65:      double log2(double);
                     66: +#    endif
                     67:    ENDEXTERN
                     68:  #endif
                     69:
1.3     ! ohara      70: diff -ubBr pari-2.0.21.beta.orig/src/kernel/ix86/level0.h pari-2.0.21.beta/src/kernel/ix86/level0.h
        !            71: --- pari-2.0.21.beta.orig/src/kernel/ix86/level0.h     2000-09-15 19:52:10.000000000 +0900
        !            72: +++ pari-2.0.21.beta/src/kernel/ix86/level0.h  2008-08-12 04:38:59.000000000 +0900
        !            73: @@ -159,8 +159,8 @@
        !            74:  #define divll(a,b) \
        !            75:  ({ ulong __value, __arg1 = (a), __arg2 = (b); \
        !            76:     __asm__ ("divl %4" \
        !            77: -        : "=a" /* %eax */ (__value), "=d" /* %edx */ (hiremainder) \
        !            78: -        : "0" /* %eax */ (__arg1), "1" /* %edx */ (hiremainder), "g" (__arg2)); \
        !            79: +        : "=a" /* %eax */ (__value), "=&d" /* %edx */ (hiremainder) \
        !            80: +        : "0" /* %eax */ (__arg1), "1" /* %edx */ (hiremainder), "mr" (__arg2)); \
        !            81:     __value; \
        !            82:  })
        !            83:

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>