summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'www-apache/mod_mono/files')
-rw-r--r--www-apache/mod_mono/files/1.1.13/70_mod_mono.conf58
-rw-r--r--www-apache/mod_mono/files/1.1.17/70_mod_mono.conf78
-rw-r--r--www-apache/mod_mono/files/digest-mod_mono-1.1.13.53
-rw-r--r--www-apache/mod_mono/files/digest-mod_mono-1.1.17-r13
-rw-r--r--www-apache/mod_mono/files/mod_mono-1.1.13.5-configure-apr-config.patch26
5 files changed, 0 insertions, 168 deletions
diff --git a/www-apache/mod_mono/files/1.1.13/70_mod_mono.conf b/www-apache/mod_mono/files/1.1.13/70_mod_mono.conf
deleted file mode 100644
index 48c4e806b3ca..000000000000
--- a/www-apache/mod_mono/files/1.1.13/70_mod_mono.conf
+++ /dev/null
@@ -1,58 +0,0 @@
-# For more information on the Mono* directives, see the man page for
-# mod_mono(8)
-
-<IfDefine MONO>
- # Set this to False if you manage your ASP.Net server manually through
- # /etc/init.d/mod-mono-server
- MonoRunXSP True
-
- # Set this to Enabled if you want to enable AutoHosting
- # See http://www.mono-project.com/AutoConfiguration for more info
- MonoAutoApplication Disabled
-
- <IfModule !mod_mono.c>
- LoadModule mono_module modules/mod_mono.so
- </IfModule>
-
- <IfModule mod_mime.c>
- AddType application/x-asp-net .aspx
- AddType application/x-asp-net .asmx
- AddType application/x-asp-net .ashx
- AddType application/x-asp-net .asax
- AddType application/x-asp-net .ascx
- AddType application/x-asp-net .soap
- AddType application/x-asp-net .rem
- AddType application/x-asp-net .axd
- AddType application/x-asp-net .cs
- AddType application/x-asp-net .config
- AddType application/x-asp-net .Config
- AddType application/x-asp-net .dll
-
- DirectoryIndex index.aspx
- DirectoryIndex Default.aspx
- DirectoryIndex default.aspx
- </IfModule>
-
-### please also add "-D MONO_DEMO" in order to activate out-of-the-box mono demo
-###
- <IfDefine MONO_DEMO>
- <IfModule mod_alias.c>
- Alias /mono "/usr/lib/xsp/test"
- </IfModule>
-
- AddMonoApplications default "/mono:/usr/lib/xsp/test"
-
- <Directory /usr/lib/xsp/test>
- SetHandler mono
- <IfModule mod_access.c>
- Order allow,deny
- Allow from all
- </IfModule>
- <IfModule mod_dir.c>
- DirectoryIndex index.aspx
- </IfModule>
- </Directory>
- </IfDefine>
-### MONO_DEMO end.
-
-</IfDefine>
diff --git a/www-apache/mod_mono/files/1.1.17/70_mod_mono.conf b/www-apache/mod_mono/files/1.1.17/70_mod_mono.conf
deleted file mode 100644
index eff05b13d1fc..000000000000
--- a/www-apache/mod_mono/files/1.1.17/70_mod_mono.conf
+++ /dev/null
@@ -1,78 +0,0 @@
-# For more information on the Mono* directives, see the man page for
-# mod_mono(8)
-
-<IfDefine MONO>
- # Set this to False if you manage your ASP.Net server manually through
- # /etc/init.d/mod-mono-server
- MonoRunXSP True
-
- # Set this to Enabled if you want to enable AutoHosting.
- # See http://www.mono-project.com/AutoConfiguration for more info.
- # Note that if you want your automatically hosted applications
- # handled by ASP.NET 2.0 engine you have to enable the aspnet2 USE flag.
- MonoAutoApplication Enabled
-
- <IfModule !mod_mono.c>
- LoadModule mono_module modules/mod_mono.so
- </IfModule>
-
- <IfModule mod_mime.c>
- AddType application/x-asp-net .aspx
- AddType application/x-asp-net .asmx
- AddType application/x-asp-net .ashx
- AddType application/x-asp-net .asax
- AddType application/x-asp-net .ascx
- AddType application/x-asp-net .soap
- AddType application/x-asp-net .rem
- AddType application/x-asp-net .axd
- AddType application/x-asp-net .cs
- AddType application/x-asp-net .config
- AddType application/x-asp-net .Config
- AddType application/x-asp-net .dll
-
- DirectoryIndex index.aspx
- DirectoryIndex Default.aspx
- DirectoryIndex default.aspx
- </IfModule>
-
-### Please also add "-D MONO_DEMO" in order to activate out-of-the-box mono demo
-###
-
- # Note that the test application runs on a separate mod-mono-server
- # instance named "testinst". Athought this is not mandatory, it shows how to
- # distribute workload between multiple mod-mono-servers. For more info see:
- # http://www.mono-project.com/Mod_mono
-
- <IfDefine MONO_DEMO>
- <IfModule mod_alias.c>
- Alias /mono "/usr/lib/xsp/test"
- </IfModule>
-
- # You might want to specify the version of mod-mono-server
- # instance that will handle your application. The default
- # value depends on whether the aspnet2 USE flag was set
- # during compilation
- #MonoServerPath testinst /usr/lib/mono/1.0/mod-mono-server.exe
- #MonoServerPath testinst /usr/lib/mono/2.0/mod-mono-server2.exe
-
- AddMonoApplications testinst "/mono:/usr/lib/xsp/test"
-
- <Directory /usr/lib/xsp/test>
- SetHandler mono
- MonoSetServerAlias testinst
-
- <IfModule mod_access.c>
- Order allow,deny
- Allow from all
- </IfModule>
- <IfModule mod_dir.c>
- # Sample ASP.NET 1.1/2.0 applications can be accessed
- # via index2.aspx.
- DirectoryIndex index.aspx
- #DirectoryIndex index2.aspx
- </IfModule>
- </Directory>
- </IfDefine>
-### MONO_DEMO end.
-
-</IfDefine>
diff --git a/www-apache/mod_mono/files/digest-mod_mono-1.1.13.5 b/www-apache/mod_mono/files/digest-mod_mono-1.1.13.5
deleted file mode 100644
index 24d06cbf0f06..000000000000
--- a/www-apache/mod_mono/files/digest-mod_mono-1.1.13.5
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 514da5dcdc49aab28172cc664a35147b mod_mono-1.1.13.5.tar.gz 335683
-RMD160 a37023ce18b09170aa6f05425041c0d36e772c25 mod_mono-1.1.13.5.tar.gz 335683
-SHA256 91ada9c15770cbf8c7cb768f61382c07c624c484a4574c0c72a5455c1e3eeebb mod_mono-1.1.13.5.tar.gz 335683
diff --git a/www-apache/mod_mono/files/digest-mod_mono-1.1.17-r1 b/www-apache/mod_mono/files/digest-mod_mono-1.1.17-r1
deleted file mode 100644
index d0fbdc55f1ee..000000000000
--- a/www-apache/mod_mono/files/digest-mod_mono-1.1.17-r1
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 3f0408a350f6f55029b75f4332be171f mod_mono-1.1.17.tar.gz 334754
-RMD160 0e567ea06deaa7255b63dd835e4be9549e5c1e35 mod_mono-1.1.17.tar.gz 334754
-SHA256 92dc2703c2d675529698e779d3d60afcfb5842a784da0bb0ddf573c0757a1144 mod_mono-1.1.17.tar.gz 334754
diff --git a/www-apache/mod_mono/files/mod_mono-1.1.13.5-configure-apr-config.patch b/www-apache/mod_mono/files/mod_mono-1.1.13.5-configure-apr-config.patch
deleted file mode 100644
index d074bebf5ff8..000000000000
--- a/www-apache/mod_mono/files/mod_mono-1.1.13.5-configure-apr-config.patch
+++ /dev/null
@@ -1,26 +0,0 @@
---- mod_mono-1.1.13.5-old/configure 2006-04-07 22:35:53.000000000 +0200
-+++ mod_mono-1.1.13.5/configure 2006-10-27 02:22:35.000000000 +0200
-@@ -21449,6 +21449,12 @@
-
- _ACEOF
- rm -f conftest$ac_exeext
-+
-+rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
-+fi
-+
-+fi
-+
- if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
- (eval $ac_link) 2>&5
- ac_status=$?
-@@ -21473,10 +21479,6 @@
- APRCONFIG_NAME=apr-config
-
- fi
--rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
--fi
--
--fi
-
- if test ! "$APACHE_VER" = "1.3" -a ! "$APACHE_VER" = "retry" ; then
- echo "$as_me:$LINENO: result: ${APACHE_VER}" >&5