rev 190 - in trunk: . include/prothon src
SVN User <[email protected]>
| Newsgroups | gmane.comp.lang.prothon.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: mark
Date: 2004-03-28 16:00:58 -0500 (Sun, 28 Mar 2004)
New Revision: 190
Modified:
trunk/CHANGES.txt
trunk/include/prothon/prothon.h
trunk/src/init.pth
trunk/src/interp.c
Log:
added extra debugging to dll err, touched prothon.h,
this really will be 0.0.1
Modified: trunk/CHANGES.txt
===================================================================
--- trunk/CHANGES.txt 2004-03-28 20:10:42 UTC (rev 189)
+++ trunk/CHANGES.txt 2004-03-28 21:00:58 UTC (rev 190)
@@ -1,7 +1,7 @@
----- Prothon Release History ----
-Version 0.0.2 - Build 185 - 3/28/04 - Weekly Release
+Version 0.0.2 - Build 190 - 3/28/04 - Weekly Release
- Fixed "not a" and "a is not b"
- Fixed Dict.__str__() on empty Dict
- Implemented -i and -c command line arguments
Modified: trunk/include/prothon/prothon.h
===================================================================
--- trunk/include/prothon/prothon.h 2004-03-28 20:10:42 UTC (rev 189)
+++ trunk/include/prothon/prothon.h 2004-03-28 21:00:58 UTC (rev 190)
@@ -48,7 +48,7 @@
* 8. By copying, installing or otherwise using Prothon, Licensee agrees
* to be bound by the terms and conditions of this License Agreement.
* ====================================================================
- */
+ */
// Prothon.h
Modified: trunk/src/init.pth
===================================================================
--- trunk/src/init.pth 2004-03-28 20:10:42 UTC (rev 189)
+++ trunk/src/init.pth 2004-03-28 21:00:58 UTC (rev 190)
@@ -5,12 +5,12 @@
# these are added to sys.path
-c:\prothon\modules\float\debug
-c:\prothon\modules\string\debug
-c:\prothon\modules\file\debug
-c:\prothon\modules\re\debug
-c:\prothon\modules\tuple\debug
-c:\prothon\modules\list\debug
+c:\prothon\modules\float\release
+c:\prothon\modules\string\release
+c:\prothon\modules\file\release
+c:\prothon\modules\re\release
+c:\prothon\modules\tuple\release
+c:\prothon\modules\list\release
# this is executed before Main as module PthMod1
Modified: trunk/src/interp.c
===================================================================
--- trunk/src/interp.c 2004-03-28 20:10:42 UTC (rev 189)
+++ trunk/src/interp.c 2004-03-28 21:00:58 UTC (rev 190)
@@ -335,6 +335,7 @@
apr_dso_unload(handle);
raise_exception(ist, OBJ(INTERNAL_EXC), "Loadable module `%s': initialization failed",
module_name);
+ printf("Failed finding dll entry symbol: %s\n", apr_dso_error(handle, dll_path, sizeof(dll_path)));
return FALSE;
}