README.txt 1.1 KB

12345678910111213141516171819202122
  1. wxAutohacks
  2. wxAutohacks is a way of ensuring the configure script remains consistent
  3. between developer commits. Previous releases include a build/aclocal_include
  4. which has now been moved into the wxWidgets build/aclocal directory.
  5. At the moment, it is intended to be copied and or symlinked into a wxWidgets
  6. source tree. For example, assume you have wxWidgets checked out in the
  7. /home/myname/wxCVS/wxWidgets/ path. Then from /home/myname/wxCVS do this:
  8. cvs -d :pserver:anoncvs@cvs.wxwidgets.org:/pack/cvsroots/wxwidgets checkout wxAutohacks
  9. You will now have wxAutohacks in /home/myname/wxCVS/wxAutohacks/. Now go into
  10. the wxWidgets build (/home/myname/wxCVS/wxWidgets/build/) and do this:
  11. ln -s ../../wxAutohacks/build/autoconf_prepend-include .
  12. From now on from the root of your wxWidgets source tree when you do this:
  13. make -f build/autogen.mk
  14. you will also build an autoconf.m4f file which will ensure the configure
  15. script stays consistent.
  16. Alternatively you can do this:
  17. make -f build/autogen.mk AUTOHACKS_PREPEND_INCLUDE_DIR=../wxAutohacks/build/autoconf_prepend-include