svn commit: samba r8829 - in branches/SAMBA_4_0/source: .

jelmer at samba.org jelmer at samba.org
Thu Jul 28 13:37:21 GMT 2005


Author: jelmer
Date: 2005-07-28 13:37:21 +0000 (Thu, 28 Jul 2005)
New Revision: 8829

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=8829

Log:
Generate hash rather then a lot of globals.

Modified:
   branches/SAMBA_4_0/source/configure.in


Changeset:
Modified: branches/SAMBA_4_0/source/configure.in
===================================================================
--- branches/SAMBA_4_0/source/configure.in	2005-07-28 13:03:19 UTC (rev 8828)
+++ branches/SAMBA_4_0/source/configure.in	2005-07-28 13:37:21 UTC (rev 8829)
@@ -91,14 +91,19 @@
 # config.pm - Autogenerate by configure. DO NOT EDIT!
 
 package config;
+require Exporter;
+ at ISA = qw(Exporter);
+ at EXPORT_OK = qw(%enabled %config);
 use strict;
 
-use vars qw(%enabled AC_FOREACH([AC_Var], m4_defn([_AC_SUBST_VARS]), [\$AC_Var ]));
+use vars qw(%enabled %config);
 
-AC_FOREACH([AC_Var], m4_defn([_AC_SUBST_VARS]), [
-\$AC_Var = "$AC_Var";])
+%config = (AC_FOREACH([AC_Var], m4_defn([_AC_SUBST_VARS]), [
+	AC_Var => '$AC_Var',])
+);
 
 $SMB_INFO_ENABLES
+1;
 CEOF
 
 echo "configure: creating config.mk"



More information about the samba-cvs mailing list