diff --git a/SysBuild/dbase/virtuoso-opensource b/SysBuild/dbase/virtuoso-opensource index 40d6acd..61db30a 100644 --- a/SysBuild/dbase/virtuoso-opensource +++ b/SysBuild/dbase/virtuoso-opensource @@ -69,6 +69,7 @@ # SRCPATH=DBase/Server +export NoRewriteName=true premk() { echo "Nothing to do for premk()" @@ -110,5 +111,5 @@ mk() { } postmk() { - echo "Nothing to do for postmk()" + GetSVN Viitor_Virtuoso $TMPROOT } diff --git a/SysBuild/guibased/redland b/SysBuild/guibased/redland index eec719b..7af0f3b 100644 --- a/SysBuild/guibased/redland +++ b/SysBuild/guibased/redland @@ -75,11 +75,12 @@ premk() { } mk32() { - CC="gcc $BUILDOPTIONS32" \ - CXX="g++ $BUILDOPTIONS32" \ + CC="gcc $BUILDOPTIONS32 -L/usr/lib" \ + CXX="g++ $BUILDOPTIONS32 -L/usr/lib" \ USE_ARCH=32 \ ./configure --prefix=/usr \ - --with-postgresql=no + --with-postgresql=no \ + --with-virtuoso=no make -j $NUMCPU make -j $NUMCPU DESTDIR=$TMPROOT install make distclean @@ -94,7 +95,8 @@ mk() { USE_ARCH=$UARCH \ ./configure $ADDOPTIONS \ --prefix=/usr \ - --with-postgresql=no + --with-postgresql=no \ + --with-virtuoso=no make -j $NUMCPU make -j $NUMCPU DESTDIR=$TMPROOT install }