Ya tengo xcode instalado en OSX Yosemite. También lo he ejecutado y he aceptado los términos y condiciones.
También puedo hacer gcc --version
y veo
Configured with: --prefix=/Applications/Xcode.app/Contents/Developer/usr --with-gxx-include-dir=/usr/include/c++/4.2.1
Apple LLVM version 7.0.0 (clang-700.1.76)
Target: x86_64-apple-darwin14.5.0
Thread model: posix
Ahora si lo hago
wget http://apache.mirrors.pair.com//httpd/httpd-2.4.17.tar.bz2
brew install pcre
tar zxvf httpd-2.4.17.tar.bz2
cd httpd-2.4.17
./configure
El error que recibo es
Configure:
configure: Configuring Apache Portable Runtime Utility library...
configure:
checking for APR-util... yes
checking for gcc... /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc
checking whether the C compiler works... no
configure: error: in '/Users/abhi/Downloads/httpd-2.4.17':
configure: error: C compiler cannot create executables
See 'config.log' for more details
¿Por qué el compilador de C no puede crear un ejecutable? Te mostré que el compilador de C está instalado correctamente en mi máquina.