This HTML5 document contains 40 embedded RDF statements represented using HTML+Microdata notation.

The embedded RDF content will be recognized by any processor of HTML5 Microdata.

PrefixNamespace IRI
dctermshttp://purl.org/dc/terms/
atomhttp://atomowl.org/ontologies/atomrdf#
foafhttp://xmlns.com/foaf/0.1/
n16http://www.gnu.org/software/make/
n10http://vos.openlinksw.com/dataspace/services/wiki/
oplhttp://www.openlinksw.com/schema/attribution#
n2http://vos.openlinksw.com/dataspace/owiki/wiki/VOS/
n18http://www.openssl.org/
dchttp://purl.org/dc/elements/1.1/
n7http://www.gnu.org/software/non-gnu/flex/
n6http://vos.openlinksw.com/dataspace/dav#
rdfshttp://www.w3.org/2000/01/rdf-schema#
n11http://rdfs.org/sioc/services#
siocthttp://rdfs.org/sioc/types#
n19http://www.gnu.org/software/gawk/
n9http://vos.openlinksw.com/dataspace/person/dav#
n22http://www.gnu.org/software/automake/
n4http://vos.openlinksw.com/dataspace/owiki/wiki/
rdfhttp://www.w3.org/1999/02/22-rdf-syntax-ns#
n13http://www.gnu.org/software/bison/
n17http://vos.openlinksw.com/dataspace/owiki#
n27http://vos.openlinksw.com/dataspace/owiki/wiki/VOS/VOSCVS/sioc.
n15http://www.gnu.org/software/libtool/
n14http://www.gnu.org/software/gperf/
xsdhhttp://www.w3.org/2001/XMLSchema#
n21http://www.gnu.org/software/autoconf/
n20http://www.gnu.org/software/m4/
n25http://vos.openlinksw.com/dataspace/person/owiki#
siochttp://rdfs.org/sioc/ns#
Subject Item
n9:this
foaf:made
n2:VOSCVS
Subject Item
n6:this
sioc:creator_of
n2:VOSCVS
Subject Item
n10:item
n11:services_of
n2:VOSCVS
Subject Item
n17:this
sioc:creator_of
n2:VOSCVS
Subject Item
n4:VOS
sioc:container_of
n2:VOSCVS
atom:entry
n2:VOSCVS
atom:contains
n2:VOSCVS
Subject Item
n2:VOSCVS
rdf:type
sioct:Comment atom:Entry
dcterms:created
2017-06-13T05:46:27.056158
dcterms:modified
2017-06-29T07:35:06.576546
rdfs:label
VOSCVS
foaf:maker
n9:this n25:this
dc:title
VOSCVS
opl:isDescribedUsing
n27:rdf
sioc:has_creator
n6:this n17:this
sioc:content
%VOSWARNING% ---+Virtuoso CVS <font size="+2"><i><b>Note:</b> This page has been left in place for historical purposes. Active Virtuoso code development is [[VOSGIT][now found on GitHub]], not <nop>SourceForge. Please change any relevant bookmarks.</i></font> ---++Introduction This document describes how to checkout a copy of the CVS tree for development purposes. It also lists the packages that need to be installed prior to generating the necessary scripts and Makefiles to build the project. CVS access is only needed for developers who want to actively track progress of the Virtuoso source code and contribute bug-fixes or enhancements to the project. It requires basic knowledge about the general layout of open source and GNU projects, the use of <code>autoconf</code> and <code>automake</code>, etc., which is beyond the scope of this document. If you have any questions, please email us at [[mailto:vos.admin@openlinksw.com][vos.admin@openlinksw.com]]. ---+CVS Archive Server Access OpenLink currently provides read-only CVS archive access through the SourceForge.net servers: <verbatim> $ cvs -d:pserver:anonymous@virtuoso.cvs.sourceforge.net:/cvsroot/virtuoso login (the password is blank) </verbatim> To check-out a particular branch choose one of: * v6 development branch: <verbatim> $ cvs -z3 -d:pserver:anonymous@virtuoso.cvs.sourceforge.net:/cvsroot/virtuoso co -rV6_0_0-DEVEL virtuoso-opensource </verbatim> * v5 development branch: <verbatim> $ cvs -z3 -d:pserver:anonymous@virtuoso.cvs.sourceforge.net:/cvsroot/virtuoso co -rV5_0-DEVEL virtuoso-opensource </verbatim> * For a specific version, such as 6.1.4: <verbatim> $ cvs -z3 -d:pserver:anonymous@virtuoso.cvs.sourceforge.net:/cvsroot/virtuoso co -rVOS-6_1_4 virtuoso-opensource </verbatim> ---+Package Dependencies To generate the configure script and all other build files necessary, please make sure the following packages and recommended versions are installed on your system. | Package | Version | From | | autoconf | 2.57 | http://www.gnu.org/software/autoconf/ | | automake | 1.6.3 | http://www.gnu.org/software/automake/ | | libtool | 1.5 | http://www.gnu.org/software/libtool/ | | flex | 2.5.4 | http://www.gnu.org/software/non-gnu/flex/ | | bison | 1.35 | http://www.gnu.org/software/bison/ | | gperf | 2.7.2 | http://www.gnu.org/software/gperf/ | | gawk | 3.1.1 | http://www.gnu.org/software/gawk/ | | m4 | 1.4.1 | http://www.gnu.org/software/m4/ | | make | 3.79.1 | http://www.gnu.org/software/make/ | | <nop>OpenSSL | 0.9.7 | http://www.openssl.org/ | Of course, you will also need any GNU packages required by these. The <code>autogen.sh</code> and <code>configure</code> scripts check for the presence and right version of some of the required components. The above versions are the minimum recommended versions of these packages. Older version of these packages can sometimes be used, but could cause build problems. To check the version number of the tools installed on your system, use one of the following commands: <verbatim>$ autoconf --version $ automake --version $ libtoolize --version $ flex --version $ bison --version $ gperf --version $ gawk --version $ m4 --version $ make --version $ openssl version </verbatim> ---++Diskspace Requirements The build produces a demo database and Virtuoso application packages that are quite large. At least 800 MB of free space should be available in the build file system. When running <b><code>make install</code></b>, the target file system should have about 460 MB free. By default, the install target directories are under <code><nowiki>/usr/local/</nowiki></code>, but you can specify a different target if you wish -- <verbatim> $ ./configure --prefix=/path/to/dir </verbatim> The minimum working configuration consists of the server executable and config files plus database, no more than a few MB for the server executable, depending on platform and options. ---++Generate build files To generate the <code>configure</code> script and all related build files, use use the supplied script in your CVS checkout directory: <verbatim> $ ./autogen.sh </verbatim> If the above command succeed without any error messages, please use the following command to check out all the options you can use: <verbatim> $ ./configure --help </verbatim> Certain build targets are only enabled when the <code>--enable-maintainer-mode</code> flag is added to configure. Please read the files <code>INSTALL</code> and <code>README</code> in this directory for further information on how to configure the package and install it on your system. ---++Submitting fixes and enhancements Patches and new contributions can be submitted as diffs from the current CVS archive by: <verbatim> $ cvs add newfiles $ cvs -z3 diff -uN > diffs </verbatim> Patches and contributions can be sent to the <nop>OpenLink Virtuoso source archive manager at [[mailto:vos.admin@openlinksw.com][vos.admin@openlinksw.com]] to be included the next distribution. Please provide accompanying documentation on which bugs are fixed or new features are introduced.
sioc:id
4c657ee50e88efe83eb41cf48c4d798d
sioc:link
n2:VOSCVS
sioc:has_container
n4:VOS
n11:has_services
n10:item
atom:title
VOSCVS
sioc:links_to
n7: n13: n14: n15: n16: n18: n19: n20: n21: n22: n2:OpenLink
atom:source
n4:VOS
atom:author
n9:this
atom:published
2017-06-13T05:46:27Z
atom:updated
2017-06-29T07:35:06Z
sioc:topic
n4:VOS