rev 691 - in trunk: . modules src

SVN User <[email protected]> Thu, 01 Jul 2004 22:22:35 -0400
Newsgroups gmane.comp.lang.prothon.cvs
Message-ID <[email protected]>
Author: bcollins
Date: 2004-07-01 22:22:29 -0400 (Thu, 01 Jul 2004)
New Revision: 691

Modified:
   trunk/configure
   trunk/configure.in
   trunk/modules/Makefile.in
   trunk/src/Makefile.in
Log:
Update for move of modules to builtins.


Modified: trunk/configure
===================================================================
--- trunk/configure	2004-07-01 19:49:27 UTC (rev 690)
+++ trunk/configure	2004-07-02 02:22:29 UTC (rev 691)
@@ -19586,7 +19586,7 @@
 
 
 
-                                                                                                    ac_config_files="$ac_config_files Rules.mk Makefile src/Makefile modules/Makefile modules/File/Makefile modules/Re/Makefile modules/Prosist/Makefile modules/SQLite/Makefile modules/OS/Makefile modules/DBM/Makefile"
+                                                                                          ac_config_files="$ac_config_files Rules.mk Makefile src/Makefile modules/Makefile modules/Re/Makefile modules/Prosist/Makefile modules/SQLite/Makefile modules/OS/Makefile modules/DBM/Makefile"
 cat >confcache <<\_ACEOF
 # This file is a shell script that caches the results of configure
 # tests run on this system so they can be shared between configure
@@ -20116,7 +20116,6 @@
   "Makefile" ) CONFIG_FILES="$CONFIG_FILES Makefile" ;;
   "src/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/Makefile" ;;
   "modules/Makefile" ) CONFIG_FILES="$CONFIG_FILES modules/Makefile" ;;
-  "modules/File/Makefile" ) CONFIG_FILES="$CONFIG_FILES modules/File/Makefile" ;;
   "modules/Re/Makefile" ) CONFIG_FILES="$CONFIG_FILES modules/Re/Makefile" ;;
   "modules/Prosist/Makefile" ) CONFIG_FILES="$CONFIG_FILES modules/Prosist/Makefile" ;;
   "modules/SQLite/Makefile" ) CONFIG_FILES="$CONFIG_FILES modules/SQLite/Makefile" ;;

Modified: trunk/configure.in
===================================================================
--- trunk/configure.in	2004-07-01 19:49:27 UTC (rev 690)
+++ trunk/configure.in	2004-07-02 02:22:29 UTC (rev 691)
@@ -109,6 +109,6 @@
 AC_SUBST(LINK_LIBTOOL)
 
 AC_OUTPUT(Rules.mk Makefile src/Makefile modules/Makefile
-	  modules/File/Makefile modules/Re/Makefile
+	  modules/Re/Makefile
 	  modules/Prosist/Makefile modules/SQLite/Makefile
 	  modules/OS/Makefile modules/DBM/Makefile)

Modified: trunk/modules/Makefile.in
===================================================================
--- trunk/modules/Makefile.in	2004-07-01 19:49:27 UTC (rev 690)
+++ trunk/modules/Makefile.in	2004-07-02 02:22:29 UTC (rev 691)
@@ -7,7 +7,7 @@
 
 include $(top_builddir)/Rules.mk
 
-MODULES = File Prosist OS DBM
+MODULES = Prosist OS DBM
 
 ifeq (@HAVE_BOOST_REGEX@,yes)
 MODULES += Re

Modified: trunk/src/Makefile.in
===================================================================
--- trunk/src/Makefile.in	2004-07-01 19:49:27 UTC (rev 690)
+++ trunk/src/Makefile.in	2004-07-02 02:22:29 UTC (rev 691)
@@ -12,7 +12,8 @@
 BUILTIN_MOD_OBJS = builtins-core.o builtins-dict.o builtins-int.o \
 	builtins-list.o builtins-string.o builtins-tuple.o \
 	builtins-float.o builtins-thread.o builtins-attrdict.o \
-	builtins-protolist.o
+	builtins-protolist.o builtins-file.o builtins-time.o \
+	builtins-bytes.o
 
 OBJS = main.o $(BUILTIN_MOD_OBJS) object.o argproc.o clist.o lock.o \
 	memory_mgr.o parser.o prmalloc.o sys.o interp.o parser_routines.o \