[Lunar-commits] CVS: moonbase/sql/mysql CONFIGURE, 1.4, 1.5 DETAILS, 1.30, 1.31

Terry Chan tchan at lunar-linux.org
Tue Jan 18 05:32:42 UTC 2005


Update of /var/cvs/lunar/moonbase/sql/mysql
In directory espresso.foo-projects.org:/tmp/cvs-serv15172

Modified Files:
	CONFIGURE DETAILS 
Log Message:
Added several mirrors to the DETAILS file.  Fixed the CONFIGURE script to
actually NOT build the options like innodb, berkeley-db, raid, etc.  CONFIGURE
script was incorrectly trying to build some options like innodb.


Index: CONFIGURE
===================================================================
RCS file: /var/cvs/lunar/moonbase/sql/mysql/CONFIGURE,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- CONFIGURE	31 May 2004 20:06:00 -0000	1.4
+++ CONFIGURE	18 Jan 2005 05:32:40 -0000	1.5
@@ -5,18 +5,26 @@
   else
     if  query  "Enable InnoDB Support? " n; then
       OPTS="$OPTS --with-innodb"
+    else
+      OPTS="$OPTS --without-innodb"
     fi
 
     if  query  "Enable BDB Support? " n; then
       OPTS="$OPTS --with-berkeley-db"
+    else
+      OPTS="$OPTS --without-berkeley-db"
     fi
 
     if  query  "Enable RAID Support? " n; then
       OPTS="$OPTS --with-raid"
+    else
+      OPTS="$OPTS --without-raid"
     fi
 
     if  query  "Include the Virtual IO support? " n; then
       OPTS="$OPTS --with-vio"
+    else
+      OPTS="$OPTS --without-vio"
     fi
 
   fi
@@ -27,6 +35,8 @@
 
   if    query  "Build embedded server (libmysqld) ? " n; then
     OPTS="$OPTS --with-embedded-server"
+  else
+    OPTS="$OPTS --without-embedded-server"
   fi
 
   echo  'CONFIGURED="y"'  >>  $MODULE_CONFIG

Index: DETAILS
===================================================================
RCS file: /var/cvs/lunar/moonbase/sql/mysql/DETAILS,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -d -r1.30 -r1.31
--- DETAILS	14 Jan 2005 21:56:11 -0000	1.30
+++ DETAILS	18 Jan 2005 05:32:40 -0000	1.31
@@ -1,13 +1,17 @@
           MODULE=mysql
          VERSION=4.1.9
           SOURCE=$MODULE-$VERSION.tar.gz
-   SOURCE_URL=http://mirror.services.wisc.edu/mysql/Downloads/MySQL-4.1/
+   SOURCE_URL[0]=http://mirror.services.wisc.edu/mysql/Downloads/MySQL-4.1/
+   SOURCE_URL[1]=http://mirrors.sunsite.dk/mysql/Downloads/MySQL-4.1/
+   SOURCE_URL[2]=http://mysql.mirror.nedlinux.nl/Downloads/MySQL-4.1/
+   SOURCE_URL[3]=ftp://mirror.mcs.anl.gov/pub/mysql/Downloads/MySQL-4.1/
+   SOURCE_URL[4]=http://sunsite.informatik.rwth-aachen.de/mysql/Downloads/MySQL-4.1/
       SOURCE_VFY=sha1:e526f301704f8fca7c7e9f42d368ffa1fef2a152
         WEB_SITE=http://www.mysql.com
       MAINTAINER=prox at lunar-linux.org
          ENTERED=20011114
          UPDATED=20050114
-        SHORT="MySQL is a widely used and fast SQL database server."
+           SHORT="MySQL is a widely used and fast SQL database server."
 
 cat << EOF
 MySQL is a widely used and fast SQL database server. It is a client/server 



More information about the Lunar-commits mailing list