pike.git/
src/
configure.in
Branch:
Tag:
Non-build tags
All tags
No tags
2001-02-15
2001-02-15 07:53:04 by Mirar (Pontus Hagland) <pike@sort.mirar.org>
37ad4052204535fc96bbeddcaa9b170e713d2746 (
9
lines) (+
6
/-
3
)
[
Show
|
Annotate
]
Branch:
7.9
config summary: bugfix in type measurer
Rev: src/configure.in:1.484
1:
-
AC_REVISION("$Id: configure.in,v 1.
483
2001/02/
14
21
:
35
:
06
mirar Exp $")
+
AC_REVISION("$Id: configure.in,v 1.
484
2001/02/
15
07
:
53
:
04
mirar Exp $")
AC_INIT(interpret.c) AC_CONFIG_HEADER(machine.h)
5195:
char *s; struct svalue sval;
-
fp=fopen("conftypes.txt","r");
+
out=fopen("config.info","a");
-
+
if (!out) return 1;
+
+
fp=fopen("conftypes.txt","r");
if (out && fp) { fgets(float_type,79,fp);
5209:
fprintf(out,"int type..............%s (%d bytes)\n", int_type,sizeof(INT_TYPE));
-
fclose(out);
+
fclose(fp); }
5221:
sizeof(sval.subtype), sizeof(sval.u));
+
fclose(out);
return 0; }