Browse Source

Removed xsp dependencies and xsp

msmith-techempower 9 years ago
parent
commit
aa81fbe68b

+ 1 - 1
frameworks/CSharp/aspnet/setup_nginx.sh

@@ -1,6 +1,6 @@
 #!/bin/bash
 
-fw_depends nginx mono xsp
+fw_depends nginx mono
 
 sed -i 's|localhost|'"$DBHOST"'|g' src/Web.config
 

+ 1 - 1
frameworks/CSharp/nancy/setup_nginx.sh

@@ -1,6 +1,6 @@
 #!/bin/bash
 
-fw_depends nginx xsp mono
+fw_depends nginx mono
 
 sed -i 's|localhost|'"${DBHOST}"'|g' src/Web.config
 sed -i 's|include /usr/local/nginx/conf/fastcgi_params;|include '"${NGINX_HOME}"'/conf/fastcgi_params;|g' nginx.conf

+ 1 - 1
frameworks/CSharp/servicestack/setup_nginx.sh

@@ -1,6 +1,6 @@
 #!/bin/bash
 
-fw_depends nginx xsp mono
+fw_depends nginx mono
 
 sed -i 's|localhost|'"$DBHOST"'|g' src/Web.config
 sed -i 's|/usr/local/nginx/|'"${IROOT}"'/nginx/|g' nginx.conf

+ 1 - 1
frameworks/CSharp/servicestack/setup_xsp.sh

@@ -1,6 +1,6 @@
 #!/bin/bash
 
-fw_depends nginx xsp mono
+fw_depends nginx mono
 
 sed -i 's|localhost|'"$DBHOST"'|g' src/Web.config
 # extra cleaning

+ 0 - 24
toolset/setup/linux/languages/xsp.sh

@@ -1,24 +0,0 @@
-#!/bin/bash
-
-fw_depends mono
-
-RETCODE=$(fw_exists ${IROOT}/xsp.installed)
-[ ! "$RETCODE" == 0 ] || { \
-  source $IROOT/xsp.installed
-  return 0; }
-
-# get
-git clone git://github.com/mono/xsp
-cd xsp
-git checkout e272a2c006211b6b03be2ef5bbb9e3f8fefd0768
-
-# build
-./autogen.sh --prefix=$MONO_HOME --disable-docs
-make
-sudo make install
-
-# cleanup
-cd ..
-rm -rf xsp
-
-echo "" > $IROOT/xsp.installed