: 저...아파치를 설치하려고 configure 를 했더니
: C compiler 관련 error가 나는데.. 어떻해 해야할지..
: 그리고 gcc cc acc c89에 대한 구문도 궁금해서요.
:
: [root@localhost apache_1.3.9]# ./configure --prefix=/usr/local/httpd
: Configuring for Apache, Version 1.3.9
: + using installation path layout: Apache (config.layout)
: Creating Makefile
: Creating Configuration.apaci in src
: Creating Makefile in src
: + configured for Linux platform
: Error: could not find any of these C compilers
: anywhere in your PATH: gcc cc acc c89
: Configure terminated
: [root@localhost apache_1.3.9]#
:
: --
: `
이런경우 일단은
set해서 PATH에 cc나 gcc가 있는지 확인해보세요
만약에 없다면 해당 프로그램을 설치하시고 페스를 잡아 주시면 됩니다.
ex) cc의 위치 /usr/local/bin
export PATH=$PATH;/usr/local/bin
저렇게 하고 다시 한번 해보세요~--^^;