Upgrade to 1.0-RC3.
This commit is contained in:
parent
f6d05dfcea
commit
0cc10aba9d
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=122104
4 changed files with 19 additions and 22 deletions
|
@ -6,10 +6,10 @@
|
|||
|
||||
PORTNAME= gambas
|
||||
PORTVERSION= 0.99
|
||||
PORTREVISION= 1
|
||||
PORTREVISION= 2
|
||||
CATEGORIES= lang
|
||||
MASTER_SITES= http://gambas.sourceforge.net/
|
||||
DISTNAME= ${PORTNAME}-${PORTVERSION}.RC2
|
||||
DISTNAME= ${PORTNAME}-${PORTVERSION}.RC3
|
||||
|
||||
MAINTAINER= thierry@FreeBSD.org
|
||||
COMMENT= Gambas Almost Means BASic
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
MD5 (gambas-0.99.RC2.tar.bz2) = 09d18daa973d09d2234d80f3b0d70377
|
||||
SIZE (gambas-0.99.RC2.tar.bz2) = 3746913
|
||||
MD5 (gambas-0.99.RC3.tar.bz2) = 6a95728aeefc0dd819198f241314814f
|
||||
SIZE (gambas-0.99.RC3.tar.bz2) = 3760222
|
||||
|
|
|
@ -1,24 +1,12 @@
|
|||
--- src/lib/db/sqlite/sqlitedataset.cpp.orig Fri Feb 27 22:53:21 2004
|
||||
+++ src/lib/db/sqlite/sqlitedataset.cpp Sun May 16 14:58:59 2004
|
||||
@@ -33,6 +33,9 @@
|
||||
#include <time.h>
|
||||
--- src/lib/db/sqlite/sqlitedataset.cpp.orig Sat Nov 20 13:52:09 2004
|
||||
+++ src/lib/db/sqlite/sqlitedataset.cpp Sun Nov 21 21:14:37 2004
|
||||
@@ -34,6 +34,9 @@
|
||||
#include <iostream>
|
||||
#include <string.h>
|
||||
#include <math.h>
|
||||
+#if defined(__FreeBSD__)
|
||||
+# include <publib.h>
|
||||
+#endif
|
||||
|
||||
#include "sqlitedataset.h"
|
||||
#include <unistd.h>
|
||||
@@ -148,7 +151,11 @@
|
||||
break;
|
||||
case ft_Float:
|
||||
v.set_asString(reslt[i]);
|
||||
+#if defined(__FreeBSD__) && !defined(_GLIBCPP_HAVE_STRTOF)
|
||||
+ v.set_asFloat((float)strtod(reslt[i], NULL));
|
||||
+#else
|
||||
v.set_asFloat(strtof(reslt[i], NULL));
|
||||
+#endif
|
||||
break;
|
||||
case ft_Double:
|
||||
v.set_asString(reslt[i]);
|
||||
|
|
|
@ -248,11 +248,11 @@ lib/gambas/lib.gb.xml.libxml.xslt.so.0
|
|||
%%PORTDOCS%%%%EXAMPLESDIR%%/Games/DeepSpace/.gambas/FMAIN
|
||||
%%PORTDOCS%%%%EXAMPLESDIR%%/Games/DeepSpace/.gambas/MMAIN
|
||||
%%PORTDOCS%%%%EXAMPLESDIR%%/Games/DeepSpace/.gambas/MMATH
|
||||
%%PORTDOCS%%%%EXAMPLESDIR%%/Games/DeepSpace/.lock
|
||||
%%PORTDOCS%%%%EXAMPLESDIR%%/Games/DeepSpace/.project
|
||||
%%PORTDOCS%%%%EXAMPLESDIR%%/Games/DeepSpace/CBullet.class
|
||||
%%PORTDOCS%%%%EXAMPLESDIR%%/Games/DeepSpace/CObject.class
|
||||
%%PORTDOCS%%%%EXAMPLESDIR%%/Games/DeepSpace/DeepSpace
|
||||
%%PORTDOCS%%%%EXAMPLESDIR%%/Games/DeepSpace/DeepSpace.png
|
||||
%%PORTDOCS%%%%EXAMPLESDIR%%/Games/DeepSpace/FAbout.class
|
||||
%%PORTDOCS%%%%EXAMPLESDIR%%/Games/DeepSpace/FAbout.form
|
||||
%%PORTDOCS%%%%EXAMPLESDIR%%/Games/DeepSpace/FMain.class
|
||||
|
@ -262,9 +262,12 @@ lib/gambas/lib.gb.xml.libxml.xslt.so.0
|
|||
%%PORTDOCS%%%%EXAMPLESDIR%%/Games/DeepSpace/doc/.html_files/eg3.gif
|
||||
%%PORTDOCS%%%%EXAMPLESDIR%%/Games/DeepSpace/doc/.html_files/eg3b.gif
|
||||
%%PORTDOCS%%%%EXAMPLESDIR%%/Games/DeepSpace/doc/coordinates.html
|
||||
%%PORTDOCS%%%%EXAMPLESDIR%%/Games/DeepSpace/doc/howto.txt
|
||||
%%PORTDOCS%%%%EXAMPLESDIR%%/Games/DeepSpace/doc/todo.txt
|
||||
%%PORTDOCS%%%%EXAMPLESDIR%%/Games/DeepSpace/images/DeepSpace.png
|
||||
%%PORTDOCS%%%%EXAMPLESDIR%%/Games/DeepSpace/object.data/kite.2do
|
||||
%%PORTDOCS%%%%EXAMPLESDIR%%/Games/DeepSpace/object.data/main.lst
|
||||
%%PORTDOCS%%%%EXAMPLESDIR%%/Games/DeepSpace/object.data/ship.2do
|
||||
%%PORTDOCS%%%%EXAMPLESDIR%%/Games/DeepSpace/object.data/spider.2do
|
||||
%%PORTDOCS%%%%EXAMPLESDIR%%/Games/DeepSpace/object.data/triangle.2do
|
||||
%%PORTDOCS%%%%EXAMPLESDIR%%/Games/DeepSpace/object.data/x-wing.2do
|
||||
%%PORTDOCS%%%%EXAMPLESDIR%%/Games/RobotFindsKitten/.gambas/FRFK
|
||||
|
@ -350,6 +353,7 @@ lib/gambas/lib.gb.xml.libxml.xslt.so.0
|
|||
%%PORTDOCS%%%%EXAMPLESDIR%%/Networking/HTTPGet/.gambas/CLSPARAMS
|
||||
%%PORTDOCS%%%%EXAMPLESDIR%%/Networking/HTTPGet/.gambas/F
|
||||
%%PORTDOCS%%%%EXAMPLESDIR%%/Networking/HTTPGet/.gambas/FCONFIG
|
||||
%%PORTDOCS%%%%EXAMPLESDIR%%/Networking/HTTPGet/.lock
|
||||
%%PORTDOCS%%%%EXAMPLESDIR%%/Networking/HTTPGet/.project
|
||||
%%PORTDOCS%%%%EXAMPLESDIR%%/Networking/HTTPGet/ClsParams.class
|
||||
%%PORTDOCS%%%%EXAMPLESDIR%%/Networking/HTTPGet/F.class
|
||||
|
@ -730,6 +734,7 @@ lib/gambas/lib.gb.xml.libxml.xslt.so.0
|
|||
%%PORTDOCS%%%%DATADIR%%/help/ComponentList.html
|
||||
%%PORTDOCS%%%%DATADIR%%/help/Components.html
|
||||
%%PORTDOCS%%%%DATADIR%%/help/CrossSumProgram.html
|
||||
%%PORTDOCS%%%%DATADIR%%/help/DanieleAlbano.html
|
||||
%%PORTDOCS%%%%DATADIR%%/help/DanielCampos.html
|
||||
%%PORTDOCS%%%%DATADIR%%/help/DarrellOlsen.html
|
||||
%%PORTDOCS%%%%DATADIR%%/help/DavidVargas.html
|
||||
|
@ -743,6 +748,7 @@ lib/gambas/lib.gb.xml.libxml.xslt.so.0
|
|||
%%PORTDOCS%%%%DATADIR%%/help/EduardoAltgott.html
|
||||
%%PORTDOCS%%%%DATADIR%%/help/EgmontSailer.html
|
||||
%%PORTDOCS%%%%DATADIR%%/help/ElenaModesto.html
|
||||
%%PORTDOCS%%%%DATADIR%%/help/ElkinRafael.html
|
||||
%%PORTDOCS%%%%DATADIR%%/help/EnzoDezi.html
|
||||
%%PORTDOCS%%%%DATADIR%%/help/ExecuteProgram.html
|
||||
%%PORTDOCS%%%%DATADIR%%/help/FabienBodard.html
|
||||
|
@ -774,6 +780,7 @@ lib/gambas/lib.gb.xml.libxml.xslt.so.0
|
|||
%%PORTDOCS%%%%DATADIR%%/help/GaryFrankenbery.html
|
||||
%%PORTDOCS%%%%DATADIR%%/help/Gb.html
|
||||
%%PORTDOCS%%%%DATADIR%%/help/GbApplication.html
|
||||
%%PORTDOCS%%%%DATADIR%%/help/GbApplication.html~
|
||||
%%PORTDOCS%%%%DATADIR%%/help/GbApplicationArgs.html
|
||||
%%PORTDOCS%%%%DATADIR%%/help/GbApplicationArgsMget.html
|
||||
%%PORTDOCS%%%%DATADIR%%/help/GbApplicationArgsRCount.html
|
||||
|
@ -3442,6 +3449,7 @@ lib/gambas/lib.gb.xml.libxml.xslt.so.0
|
|||
%%PORTDOCS%%%%DATADIR%%/help/LangPredefinedConstants.html
|
||||
%%PORTDOCS%%%%DATADIR%%/help/LangPropertiesDeclaration.html
|
||||
%%PORTDOCS%%%%DATADIR%%/help/LangQUIT.html
|
||||
%%PORTDOCS%%%%DATADIR%%/help/LangRAISE.html
|
||||
%%PORTDOCS%%%%DATADIR%%/help/LangREAD.html
|
||||
%%PORTDOCS%%%%DATADIR%%/help/LangRENAME.html
|
||||
%%PORTDOCS%%%%DATADIR%%/help/LangREPEAT.html
|
||||
|
@ -3711,6 +3719,7 @@ lib/gambas/lib.gb.xml.libxml.xslt.so.0
|
|||
%%PORTDOCS%%@dirrm %%EXAMPLESDIR%%/Games/RobotFindsKitten/.gambas
|
||||
%%PORTDOCS%%@dirrm %%EXAMPLESDIR%%/Games/RobotFindsKitten
|
||||
%%PORTDOCS%%@dirrm %%EXAMPLESDIR%%/Games/DeepSpace/object.data
|
||||
%%PORTDOCS%%@dirrm %%EXAMPLESDIR%%/Games/DeepSpace/images
|
||||
%%PORTDOCS%%@dirrm %%EXAMPLESDIR%%/Games/DeepSpace/doc/.html_files
|
||||
%%PORTDOCS%%@dirrm %%EXAMPLESDIR%%/Games/DeepSpace/doc
|
||||
%%PORTDOCS%%@dirrm %%EXAMPLESDIR%%/Games/DeepSpace/.gambas
|
||||
|
|
Loading…
Reference in a new issue