1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211
|
#ifdef WIN32
#include <windows.h>
#else
#include <stdio.h>
#include <sys/utsname.h>
#endif
#include <string.h>
#include <stdlib.h> /* getenv ! */
#include "../machine.h"
#include "../os_specific/Os_specific.h"
#include "../graphics/Math.h"
#ifdef WIN32
#include "../os_specific/win_mem_alloc.h" /* malloc */
#else
#include "../os_specific/sci_mem_alloc.h" /* malloc */
#endif
#ifdef WIN32
BOOL FileExist(char *filename);
BOOL ExistModelicac(void);
BOOL ExistJavaSciWin(void);
#endif
/*************************************************************************************************/
/*-------------------------------------------
* get configure options used for compilation
* used in inisci.f
* Copyright ENPC/ Jean-Philipe Chancelier
*-------------------------------------------*/
/*************************************************************************************************/
int C2F(withtk)(int *rep)
{
#ifdef WITH_TK
*rep =1;
#else
*rep =0;
#endif
return 0;
}
/*************************************************************************************************/
int C2F(withpvm)(int *rep)
{
#ifdef WITH_PVM
*rep =1;
#else
*rep =0;
#endif
return 0;
}
/*************************************************************************************************/
int C2F(withgtk)(int *rep)
{
#ifdef WITH_GTK
*rep =1;
#else
*rep =0;
#endif
return 0;
}
/*************************************************************************************************/
int C2F(withocaml)(int *rep)
{
#ifdef WIN32
if (ExistModelicac())
{
*rep =1;
}
else
{
*rep =0;
}
#else
#ifdef WITH_OCAML
*rep =1;
#else
*rep =0;
#endif
#endif
return 0;
}
/*************************************************************************************************/
int C2F(withjavasci)(int *rep)
{
#ifdef WIN32
if (ExistJavaSciWin())
{
*rep =1;
}
else
{
*rep =0;
}
#else
if (ExistJavaSciUnix())
{
*rep =1;
}
else
{
*rep =0;
}
#endif
return 0;
}
/*************************************************************************************************/
int C2F(getcomp)(char *buf,int *nbuf,long int lbuf)
{
int ierr,iflag=0,l1buf=lbuf;
C2F(getenvc)(&ierr,"COMPILER",buf,&l1buf,&iflag);
if ( ierr== 1) strncpy(buf,"NO",lbuf);
*nbuf = strlen(buf);
return 0;
}
/*************************************************************************************************/
#ifdef WIN32
BOOL FileExist(char *filename)
{
BOOL retour=FALSE;
WIN32_FIND_DATA FindFileData;
HANDLE handle = FindFirstFile (filename, &FindFileData);
if (handle != INVALID_HANDLE_VALUE)
{
FindClose (handle);
retour=TRUE;
}
else retour=FALSE;
return retour;
}
/*************************************************************************************************/
BOOL ExistModelicac(void)
{
#define ModelicacName "/bin/modelicac.exe"
BOOL bOK=FALSE;
char *SCIPATH = (char*)getenv ("SCI");
char *fullpathModelicac=NULL;
fullpathModelicac=(char*)MALLOC((strlen(SCIPATH)+strlen(ModelicacName)+1)*sizeof(char));
wsprintf(fullpathModelicac,"%s%s",SCIPATH,ModelicacName);
bOK=FileExist(fullpathModelicac);
if (fullpathModelicac) FREE(fullpathModelicac);
return bOK;
}
/*************************************************************************************************/
BOOL ExistJavaSciWin(void)
{
#define JavaSCIName "/bin/javasci.dll"
BOOL bOK=FALSE;
char *SCIPATH = (char*)getenv ("SCI");
char *fullpathJavaSci=NULL;
fullpathJavaSci=(char*)MALLOC((strlen(SCIPATH)+strlen(JavaSCIName)+1)*sizeof(char));
wsprintf(fullpathJavaSci,"%s%s",SCIPATH,JavaSCIName);
bOK=FileExist(fullpathJavaSci);
if (fullpathJavaSci) FREE(fullpathJavaSci);
return bOK;
}
#endif
/*************************************************************************************************/
int ExistJavaSciUnix(void)
{
int bOK=0;
char *SCIPATH = (char*)getenv ("SCI");
char *fullpathJavaSci=NULL;
#ifndef WIN32
#define JavaSciName "libjavasci"
struct utsname uname_pointer;
FILE *fp;
char OperatinSystem[256];
char Release[256];
char extension[5];
uname(&uname_pointer);
sprintf(OperatinSystem,"%s",uname_pointer.sysname);
sprintf(Release,"%s",uname_pointer.release);
if ( strcmp(OperatinSystem,"HP-UX") == 0 )
{
strcpy(extension,".sl");
}
else
{
strcpy(extension,".so");
}
fullpathJavaSci=(char*)MALLOC((strlen(SCIPATH)+strlen("/bin/")+strlen(JavaSciName)+strlen(extension)+1)*sizeof(char));
sprintf(fullpathJavaSci,"%s/bin/%s%s",SCIPATH,JavaSciName,extension);
fp=fopen(fullpathJavaSci,"r");
if (fp)
{
fclose(fp);
bOK=1;
}
else
{
bOK=0;
}
if (fullpathJavaSci) FREE(fullpathJavaSci);
#endif
return bOK;
}
/*************************************************************************************************/
|