On Fri, 26 Feb 2016, Dave Nadler wrote:
What is the recommended setup technique for all the developers like us?
You run configure once on each platform and save that particular curlbuild.h and then you make your builds include that one for the correct platforms:
[platform 1] ./configure ... mv curlbuild.h curlbuild-plat1.h [platform 2] ./configure ... mv curlbuild.h curlbuild-plat2.h [platform 2] ./configure ... mv curlbuild.h curlbuild-plat3.h then you make a new curlbuild.h: #ifdef plat1 #include "curlbuild-plat1.h" #endif #ifdef plat2 #include "curlbuild-plat2.h" #endif #ifdef plat3 #include "curlbuild-plat3.h" #endif -- / daniel.haxx.se ------------------------------------------------------------------- List admin: https://cool.haxx.se/list/listinfo/curl-library Etiquette: https://curl.haxx.se/mail/etiquette.html
