I have made some changes to zproject (Windows building scripts) and regenerated zeromq/malamute project with those changes using these steps:
#!/usr/bin/env bash set -x ( cd ~/git/zproject && ./autogen.sh && ./configure && make && sudo make install ) || exit 1 #git clone --depth 1 https://github.com/imatix/gsl gsl ( cd ~/git/gsl/src && make -j4 && sudo make install ) || exit 1 #git clone --depth 1 https://github.com/zeromq/czmq czmq ( cd ~/git/czmq && gsl -target:* project.xml ) || exit 1 #git clone --depth 1 https://github.com/zeromq/malamute malamute ( cd ~/git/malamute && gsl -target:* project.xml ) || exit 1 The problem is that I end up with differences between the generated files which are note related to my changes to GSL files (malamute/include/mlm_proto.h): OLD: // This is a draft class, and may change without notice. It is disabled in// stable builds by default. If you use this in applications, please ask// for it to be pushed to stable state. Use --enable-drafts to enable. NEW: // This API is a draft, and may change without notice. >From the .GSL script, it seems to indicate that one was built with project.stable set and the other was not. How do I specify to gsl command line that I want to build with stable set?
_______________________________________________ zeromq-dev mailing list [email protected] http://lists.zeromq.org/mailman/listinfo/zeromq-dev
