Archives
D Programming
DD.gnu digitalmars.D digitalmars.D.bugs digitalmars.D.dtl digitalmars.D.dwt digitalmars.D.announce digitalmars.D.learn digitalmars.D.debugger C/C++ Programming
c++c++.announce c++.atl c++.beta c++.chat c++.command-line c++.dos c++.dos.16-bits c++.dos.32-bits c++.idde c++.mfc c++.rtl c++.stl c++.stl.hp c++.stl.port c++.stl.sgi c++.stlsoft c++.windows c++.windows.16-bits c++.windows.32-bits c++.wxwindows digitalmars.empire digitalmars.DMDScript |
c++ - strange compile error in stropts.h
Hi, I get the following errors when building ACE, we don't define uid or gid as macro's. Anyone an idea? Johnny Digital Mars Compiler Version 8.41n o_uid_t uid; ^ c:\dm\bin\..\include\sys/stropts.h(148) : Error: ';' expected following declaration of struct member o_gid_t gid; ^ c:\dm\bin\..\include\sys/stropts.h(149) : Error: ';' expected following declaration of struct member --- errorlevel 1 Sep 22 2004
It likely means that o_uid_t is not defined, so the parser thinks it's a declaration for o_uid_t. Sep 22 2004
Hi, Yes you are correct, o_uid_t and o_gid_t are not defined, when I add the typedefs below to my code the errors are gone, any idea how I could run into the situation where the DMC header files don't define o_uid_t and o_gid_t? Johnny typedef long o_uid_t; typedef long o_gid_t; "Walter" <newshound digitalmars.com> wrote in message news:cit2bd$32q$2 digitaldaemon.com...It likely means that o_uid_t is not defined, so the parser thinks it's a declaration for o_uid_t. Sep 23 2004
Johnny Willemsen wrote:Hi, Yes you are correct, o_uid_t and o_gid_t are not defined, when I add the typedefs below to my code the errors are gone, any idea how I could run into the situation where the DMC header files don't define o_uid_t and o_gid_t? Sep 23 2004
Hi,Yes you are correct, o_uid_t and o_gid_t are not defined, when I add the typedefs below to my code the errors are gone, any idea how I could run into the situation where the DMC header files don't define o_uid_t and o_gid_t? Sep 23 2004
Hi, For the interested ones, our build results are online visible at http://www.dre.vanderbilt.edu/~remedynl/dm/. We are working on the errors, linker options are not handled correct. Regards Johnny Willemsen Remedy IT Leeghwaterstraat 25 2811 DT Reeuwijk The Netherlands www.theaceorb.nl / www.remedy.nl "Johnny Willemsen" <jwillemsen remedy.nl> wrote in message news:civ78m$1vmr$1 digitaldaemon.com...Hi,Yes you are correct, o_uid_t and o_gid_t are not defined, when I add the typedefs below to my code the errors are gone, any idea how I could run into the situation where the DMC header files don't define o_uid_t and o_gid_t? Sep 29 2004
"Johnny Willemsen" <jwillemsen remedy.nl> wrote in message news:civ78m$1vmr$1 digitaldaemon.com...Hi,Yes you are correct, o_uid_t and o_gid_t are not defined, when I add Sep 30 2004
HiYes you are correct, o_uid_t and o_gid_t are not defined, when I add Oct 05 2004
"Johnny Willemsen" <jwillemsen remedy.nl> wrote in message news:cjtksf$2m0s$1 digitaldaemon.com...HiYes you are correct, o_uid_t and o_gid_t are not defined, when I add Oct 05 2004
|