From 7fc69899a1fc28db2c594956b0e68066ca1d6abd Mon Sep 17 00:00:00 2001 From: Pav Lucistnik Date: Thu, 30 Nov 2006 23:52:09 +0000 Subject: [PATCH] - Document WX_CONF_ARGS Submitted by: alepulver --- .../books/porters-handbook/book.sgml | 39 +++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/en_US.ISO8859-1/books/porters-handbook/book.sgml b/en_US.ISO8859-1/books/porters-handbook/book.sgml index fd8448e53a..09d43abf96 100644 --- a/en_US.ISO8859-1/books/porters-handbook/book.sgml +++ b/en_US.ISO8859-1/books/porters-handbook/book.sgml @@ -6797,6 +6797,45 @@ PLIST_SUB+= VERSION="${VER_STR}" need of WX_PREMK. + + + Additional <command>configure</command> arguments + + Some GNU configure scripts can not find + wxWidgets with just the + WX_CONFIG environment variable set, requiring + additional arguments. The WX_CONF_ARGS variable + can be used for provide them. + + + Legal values for <makevar>WX_CONF_ARGS</makevar> + + + + + Possible value + + Resulting argument + + + + + + absolute + + --with-wx-config=${WX_CONFIG} + + + + relative + + --with-wx=${X11BASE} + --with-wx-config=${WX_CONFIG:T} + + + +
+