fcgio.cpp:50: error: 'EOF' was not declared in this scope

前端 未结 3 1500
佛祖请我去吃肉
佛祖请我去吃肉 2021-02-04 00:01

I am attempting to build fastcgi on a Linux Ubuntu 10.x machine.

I run the following commands:

./configure make

and I get the following error:

         


        
3条回答
  •  攒了一身酷
    2021-02-04 00:59

    EOF is a C macro and seems that you do not have it defined in fcgio.cpp or that something has undefined it. I would first try to add #include to start of fcgio.cpp.

提交回复
热议问题