• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/platforms/Windows/MSVC9/libs/libGeoIP/
1@echo off
2if exist geoip.h goto h_exist
3echo creating GeoIP.h
4echo #undef ENABLE_IP2COUNTRY > GeoIP.h
5echo typedef void GeoIP; >> GeoIP.h
6:h_exist
7if exist geoip.c goto c_exist
8echo creating GeoIP.c
9echo // Dummy > GeoIP.c
10:c_exist
11if exist geoip_x.c goto finish
12echo creating GeoIP_X.c
13echo #pragma warning(disable:4996) > GeoIP_X.c
14echo #include "GeoIP.c" >> GeoIP_X.c
15:finish
16
17