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/24 00:33:45 UTC

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

Author: pquerna
Date: Mon Mar 23 23:33:45 2009
New Revision: 757596

URL: http://svn.apache.org/viewvc?rev=757596&view=rev
Log:
Scons: oops, wrong python object.

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=757596&r1=757595&r2=757596&view=diff
==============================================================================
--- apr/apr/trunk/build/aprenv.py (original)
+++ apr/apr/trunk/build/aprenv.py Mon Mar 23 23:33:45 2009
@@ -545,7 +545,7 @@
         subst['@have_ipv6@'] = 0
 
     if conf.CheckDeclaration('IPPROTO_SCTP', '#include <netinet/in.h>') and \
-        self.Check_apr_sctp():
+        conf.Check_apr_sctp():
         subst['@have_sctp@'] = 1
     else:
         subst['@have_sctp@'] = 0