You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by pq...@apache.org on 2009/03/09 00:50:24 UTC

svn commit: r751556 - /apr/apr/trunk/build/aprenv.py

Author: pquerna
Date: Sun Mar  8 23:50:24 2009
New Revision: 751556

URL: http://svn.apache.org/viewvc?rev=751556&view=rev
Log:
SCons:
 Define the off_t to string function in the config.h file too.

Modified:
    apr/apr/trunk/build/aprenv.py

Modified: apr/apr/trunk/build/aprenv.py
URL: http://svn.apache.org/viewvc/apr/apr/trunk/build/aprenv.py?rev=751556&r1=751555&r2=751556&view=diff
==============================================================================
--- apr/apr/trunk/build/aprenv.py (original)
+++ apr/apr/trunk/build/aprenv.py Sun Mar  8 23:50:24 2009
@@ -601,5 +601,7 @@
     self.SubstFile('include/apr.h', 'include/apr.h.in', SUBST_DICT = subst)
 
     if hasattr(conf, "config_h_text"):
+      conf.Define("APR_OFF_T_STRFN", subst['@off_t_strfn@'])
       conf.config_h_text = conf.config_h_text + '#include "arch/apr_private_common.h"\n'
+ 
     return conf.Finish()