From: Sam S. <sd...@gn...> - 2011-08-10 13:14:13
|
This is counterproductive. We can do this "once a day" exchange forever, and we need to make a release RSN (the last one was 13 months ago!) Please be proactive: investigate errors, try fixing them, submit patches. > * Yaroslav Kavenchuk <xni...@tz...> [2011-08-10 13:31:02 +0300]: > > gcc -I/usr/local/include -I/home/src/clisp/clisp/src > -I/home/src/clisp/clisp/build-full-debug/gllib > -I/home/src/clisp/clisp/src/gllib -g -O2 -W -Wswitch -Wcomment > -Wpointer-arith -Wimplicit -Wreturn-type -Wmissing-declarations > -Wno-sign-compare -Wno-format-nonliteral -falign-functions=4 -D_WIN32 -g > -O0 -DDEBUG_OS_ERROR -DDEBUG_SPVW -DDEBUG_BYTECODE -DSAFETY=3 > -DENABLE_UNICODE -I/usr/local/include -DDYNAMIC_FFI -c stream.c > ../src/stream.d:14918:29: error: expected declaration specifiers or > '...' before '*' token > ../src/stream.d:14919:28: error: expected declaration specifiers or > '...' before 'PIO_STATUS_BLOCK' > ../src/stream.d:14921:5: error: expected declaration specifiers or '...' > before 'FILE_INFORMATION_CLASS' > ../src/stream.d:14918:9: warning: type defaults to 'int' in declaration > of 'NTSTATUS' > ../src/stream.d:14918:9: error: 'NTSTATUS' declared as function > returning a function > ../src/stream.d:14922:31: error: expected '=', ',', ';', 'asm' or > '__attribute__' before 'qif' > ../src/stream.d:14923:31: error: expected '=', ',', ';', 'asm' or > '__attribute__' before 'get_qif' so, where are PIO_STATUS_BLOCK, IO_STATUS_BLOCK FILE_INFORMATION_CLASS, FILE_ACCESS_INFORMATION, FileAccessInformation, FILE_NAME_INFORMATION NTSTATUS declared on your system? try including those files. what happens? > ../src/stream.d:14961:21: error: 'STATUS_SUCCESS' undeclared (first use > in this function) you said that the file which declares STATUS_SUCCESS is included from the file <ddk/winddk.h>. was configure re-run? grep HAVE_DDK_WINDDK_H config* > small note - src/stream.d:14917 > > /* http://msdn.microsoft.com/en-us/library/ms804359.aspx */ > > this url is redirected to > http://msdn.microsoft.com/en-us/library/ff567052.aspx > additional information: > http://msdn.microsoft.com/en-us/library/ff556646.aspx thanks. >>> Header Wdm.h (include Wdm.h, Ntddk.h, or Ntifs.h) so, what should be included on your system? please edit src/configure by hand: diff -r fa1482716383 src/configure --- a/src/configure Tue Aug 09 08:59:35 2011 -0400 +++ b/src/configure Wed Aug 10 09:11:36 2011 -0400 @@ -33958,7 +33958,7 @@ fi fi test "$ac_cv_lib_socket_connect" = yes && LIBS="$LIBS -lsocket" test "$ac_cv_lib_nsl_gethostbyname" = yes && LIBS="$LIBS -lnsl" -for ac_header in winternl.h ntstatus.h ddk/winddk.h +for ac_header in winternl.h ntstatus.h winddk.h ddk/winddk.h ntddk.h ddk/ntddk.h wdm.h ntifs.h do : as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" and see which of these windows files it detects. then please figure out which files actually have to be included. thanks. -- Sam Steingold (http://sds.podval.org/) on CentOS release 5.6 (Final) X 11.0.60900031 http://mideasttruth.com http://www.memritv.org http://memri.org http://pmw.org.il http://camera.org http://www.PetitionOnline.com/tap12009/ XML is like violence. If it doesn't solve the problem, use more. |