[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
building clisp-1993-08-22
- To: clisp-list@ma2s2.mathematik.uni-karlsruhe.de
- Subject: building clisp-1993-08-22
- From: dxs@evolving.com (Dan Stanger)
- Date: Fri, 22 Oct 1993 14:40:29 -0600
i am having a problem building. there is a problem in the configure
in src where the code is as follows.
# A program that outputs its argument count:
cat > conftest.c <<EOF
#include <stdio.h>
#ifdef __STDC__
main (int argc, char** argv)
#else
main () int argc; char** argv;
#endif
{ printf("%d\n",argc); exit(0); }
EOF
eval $compile
if i dont use the ansi c compiler, then the code fails because the line
containing main should be
main(argc, argv) int argc; char** argv;
is this a error in configure?
if i try to use the ansi c compiler, i get errors in machine.h
i am trying to port this to a rs6000.