GeoIP formula

GeoIP is a C library that enables the user to find geographical and
network information of an IP address.
This commit is contained in:
Michael Stephens 2009-10-02 22:09:26 -04:00 committed by Max Howell
parent c130cf3e71
commit 65eac81ca9

View File

@ -46,8 +46,9 @@ else
end
if MACOS_VERSION >= 10.6 or ENV['HOMEBREW_USE_LLVM']
ENV['CC'] = '/Developer/usr/llvm-gcc-4.2/bin/llvm-gcc-4.2'
ENV['CXX'] = '/Developer/usr/llvm-gcc-4.2/bin/llvm-g++-4.2'
ENV['PATH'] = "/Developer/usr/llvm-gcc-4.2/bin:#{ENV['PATH']}"
ENV['CC'] = 'llvm-gcc-4.2'
ENV['CXX'] = 'llvm-g++-4.2'
cflags = ['-O4'] # O4 baby!
else
ENV['CC']="gcc-4.2"