[BACK]Return to Risa.tmpl CVS log [TXT][DIR] Up to [local] / OpenXM_contrib2 / asir2000 / include

Diff for /OpenXM_contrib2/asir2000/include/Attic/Risa.tmpl between version 1.11 and 1.35

version 1.11, 2000/08/21 08:31:35 version 1.35, 2003/03/07 03:12:26
Line 2 
Line 2 
  * Copyright (c) 1994-2000 FUJITSU LABORATORIES LIMITED   * Copyright (c) 1994-2000 FUJITSU LABORATORIES LIMITED
  * All rights reserved.   * All rights reserved.
  *   *
  * FUJITSU LABORATORIES LIMITED ("FLL") hereby grants you a limited,   * $OpenXM: OpenXM_contrib2/asir2000/include/Risa.tmpl,v 1.34 2003/02/14 22:29:13 ohara Exp $
  * non-exclusive and royalty-free license to use, copy, modify and  
  * redistribute, solely for non-commercial and non-profit purposes, the  
  * computer program, "Risa/Asir" ("SOFTWARE"), subject to the terms and  
  * conditions of this Agreement. For the avoidance of doubt, you acquire  
  * only a limited right to use the SOFTWARE hereunder, and FLL or any  
  * third party developer retains all rights, including but not limited to  
  * copyrights, in and to the SOFTWARE.  
  *  
  * (1) FLL does not grant you a license in any way for commercial  
  * purposes. You may use the SOFTWARE only for non-commercial and  
  * non-profit purposes only, such as academic, research and internal  
  * business use.  
  * (2) The SOFTWARE is protected by the Copyright Law of Japan and  
  * international copyright treaties. If you make copies of the SOFTWARE,  
  * with or without modification, as permitted hereunder, you shall affix  
  * to all such copies of the SOFTWARE the above copyright notice.  
  * (3) An explicit reference to this SOFTWARE and its copyright owner  
  * shall be made on your publication or presentation in any form of the  
  * results obtained by use of the SOFTWARE.  
  * (4) In the event that you modify the SOFTWARE, you shall notify FLL by  
  * e-mail at risa-admin@flab.fujitsu.co.jp of the detailed specification  
  * for such modification or the source code of the modified part of the  
  * SOFTWARE.  
  *  
  * THE SOFTWARE IS PROVIDED AS IS WITHOUT ANY WARRANTY OF ANY KIND. FLL  
  * MAKES ABSOLUTELY NO WARRANTIES, EXPRESSED, IMPLIED OR STATUTORY, AND  
  * EXPRESSLY DISCLAIMS ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS  
  * FOR A PARTICULAR PURPOSE OR NONINFRINGEMENT OF THIRD PARTIES'  
  * RIGHTS. NO FLL DEALER, AGENT, EMPLOYEES IS AUTHORIZED TO MAKE ANY  
  * MODIFICATIONS, EXTENSIONS, OR ADDITIONS TO THIS WARRANTY.  
  * UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, TORT, CONTRACT,  
  * OR OTHERWISE, SHALL FLL BE LIABLE TO YOU OR ANY OTHER PERSON FOR ANY  
  * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, PUNITIVE OR CONSEQUENTIAL  
  * DAMAGES OF ANY CHARACTER, INCLUDING, WITHOUT LIMITATION, DAMAGES  
  * ARISING OUT OF OR RELATING TO THE SOFTWARE OR THIS AGREEMENT, DAMAGES  
  * FOR LOSS OF GOODWILL, WORK STOPPAGE, OR LOSS OF DATA, OR FOR ANY  
  * DAMAGES, EVEN IF FLL SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF  
  * SUCH DAMAGES, OR FOR ANY CLAIM BY ANY OTHER PARTY. EVEN IF A PART  
  * OF THE SOFTWARE HAS BEEN DEVELOPED BY A THIRD PARTY, THE THIRD PARTY  
  * DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE,  
  * PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE.  
  * $OpenXM: OpenXM_contrib2/asir2000/include/Risa.tmpl,v 1.10 2000/05/29 08:54:47 noro Exp $  
 */  */
 #include "config.h"  #include "config.h"
   
 #define USE_GCC  #define USE_GCC
 #define USE_INET  
 /* #define USE_MPI */  /* #define USE_MPI */
 /* #define USE_FFT_FLOAT */  /* #define USE_FFT_FLOAT */
 /* #define USE_LAPACK */  /* #define USE_LAPACK */
   /* #define USE_FEP */
   /* #undef OpenXM_HOME */
   /* #define USE_INTERVAL */
   
   #if defined(cygwinArchitecture)
   INSTALL=/bin/install
   #endif
   
 #if defined(LinuxArchitecture)  #if defined(LinuxArchitecture)
 #if LinuxCLibMajorVersion >= 6 || \  #if LinuxCLibMajorVersion >= 6 || \
     (LinuxCLibMajorVersion == 5 && LinuxCLibMinorVersion == 99)      (LinuxCLibMajorVersion == 5 && LinuxCLibMinorVersion == 99)
Line 65  EXTRA_LDOPTIONS=-static
Line 29  EXTRA_LDOPTIONS=-static
 #endif  #endif
 #endif  #endif
   
 #if defined(AlphaArchitecture)  #if defined(AlphaArchitecture) || defined(DarwinArchitecture)
 #undef USE_GCC  #undef USE_GCC
 #endif  #endif
   
Line 88  CC= gcc
Line 52  CC= gcc
 CC= cc  CC= cc
 #endif  #endif
   
 CDEBUGFLAGS= -O  CDEBUGFLAGS= -g -O
   
 #if defined(SunArchitecture)  #if defined(SunArchitecture)
 #if SystemV4  #if SystemV4
 #if defined(SparcArchitecture)  #if defined(SparcArchitecture)
 CDEBUGFLAGS= -O -mv8  CDEBUGFLAGS= -g -O -mv8
 #else  #else
 CDEBUGFLAGS= -O  CDEBUGFLAGS= -g -O
 #endif  #endif
 CCOPTIONS = -DSYSV -DSVR4  CCOPTIONS = -DSYSV -DSVR4
 AR=/usr/ccs/bin/ar cqs  AR=/usr/ccs/bin/ar cqs
Line 124  CC= cc -Wl,-D -Wl,$(HEAP_START_ADDR)
Line 88  CC= cc -Wl,-D -Wl,$(HEAP_START_ADDR)
 #endif  #endif
   
 #if defined(AlphaArchitecture)  #if defined(AlphaArchitecture)
   CCOPTIONS =
 PARIFLAGS = -DLONG_IS_64BIT  PARIFLAGS = -DLONG_IS_64BIT
 #else  #else
 PARIFLAGS = -DLONG_IS_32BIT  PARIFLAGS = -DLONG_IS_32BIT
 #endif  #endif
   
   #if defined(DarwinArchitecture)
   CCOPTIONS =
   #endif
   
   #if defined(AIXArchitecture)
   CC = cc -qchars=signed
   #endif
   
 #ifdef USE_PARI  #ifdef USE_PARI
 PARI=1  PARI= -DPARI
 PARIINC = $(ROOTDIR)/include/pari  PARIINC = -I$(ROOTDIR)/include/pari
 PARILIB = $(ROOTDIR)/lib/libpari.a  #if defined(OpenXM_HOME)
   PARILIB = $(ROOTDIR)/lib/lib$(LIBPARI).a
 #else  #else
 PARI=0  PARILIB = -L/usr/local/lib -l$(LIBPARI)
 PARIINC = .  
 PARILIB =  
 #endif  #endif
   
 #ifdef USE_INET  
 INET=1  
 #else  #else
 INET=0  PARI=
   PARIINC =
   PARILIB =
 #endif  #endif
   
 #ifdef USE_LAPACK  #ifdef USE_LAPACK
 LAPACK=1  LAPACK= -DLAPACK=1
 LAPACKLIB = -llapack -lblas -lI77 -lF77  LAPACKLIB = -llapack -lblas -lI77 -lF77
 #else  #else
 LAPACK=0  LAPACK= -DLAPACK=0
 LAPACKLIB =  LAPACKLIB =
 #endif  #endif
   
 #ifdef USE_PLOT  #ifdef USE_PLOT
 DO_PLOT=1  DO_PLOT= -DDO_PLOT=1
 #else  #else
 DO_PLOT=0  DO_PLOT= -DDO_PLOT=0
 #endif  #endif
   
 #ifdef USE_FFT_FLOAT  #ifdef USE_FFT_FLOAT
 USE_FLOAT=1  USE_FLOAT= -DUSE_FLOAT
 #else  #else
 USE_FLOAT=0  USE_FLOAT=
 #endif  #endif
   
 #ifdef USE_MPI  #ifdef USE_MPI
 MPI=1  MPI= -DMPI=1
 MPILIB=-L/opt/FJSVmpi2/lib -lmpi -L/opt/FSUNaprun/lib -lmpl -lemi -lthread  MPILIB=-L/opt/FJSVmpi2/lib -lmpi -L/opt/FSUNaprun/lib -lmpl -lemi -lthread
 MPIINC=/opt/FJSVmpi2/include  MPIINC=-I/opt/FJSVmpi2/include
 #else  #else
 MPI=0  MPI=-DMPI=0
 MPILIB=  MPILIB=
 MPIINC=.  MPIINC=
 #endif  #endif
   
   #ifdef USE_FEP
   FEP= -DFEP=1
   #if defined(OpenXM_HOME)
   FEPLIB= $(ROOTDIR)/lib/libreadline.a
   #else
   FEPLIB = -lreadline -ltermcap
   #endif
   #else
   FEP=-DFEP=0
   FEPLIB =
   #endif
   
   
 #if !defined(NullParameter)  #if !defined(NullParameter)
 #define NullParameter  #define NullParameter
 #endif  #endif
   
 INCLUDES= -I$(TOP)/include -I$(TOP)/parse -I$(TOP)/io -I$(PARIINC) -I$(MPIINC)  #ifdef USE_INTERVAL
 DEFINES= -DINET=$(INET) -DPARI=$(PARI) -DLAPACK=$(LAPACK) -DDO_PLOT=$(DO_PLOT) -DUSE_FLOAT=$(USE_FLOAT) $(PARIFLAGS) -DHMEXT -DMPI=$(MPI) $(LINUX_EXTRA_DEFINES)  INTERVALDEF = -DINTERVAL -DITVDEBUG
   INTERVALDEF = -DINTERVAL
   #else
   INTERVALDEF =
   #endif
   
   INCLUDES= -I. -I$(TOP)/include -I$(TOP)/parse -I$(TOP)/io -I$(TOP)/gc/include $(PARIINC) $(MPIINC)
   DEFINES= $(INTERVALDEF) -DINET=$(INET) $(PARI) $(LAPACK) $(DO_PLOT) $(USE_FLOAT) $(PARIFLAGS) -DHMEXT $(MPI) $(FEP) $(LINUX_EXTRA_DEFINES)

Legend:
Removed from v.1.11  
changed lines
  Added in v.1.35

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