博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
centos 编译安装mono
阅读量:6253 次
发布时间:2019-06-22

本文共 1482 字,大约阅读时间需要 4 分钟。

yum -y install httpd httpd-devel make glib2-devel libpng-devel libjpeg-devel giflib-devel libtiff-devel libX11-devel gcc* fontconfig-devel bison gettext bzip2  libtool automake autoconf wget unzip

directory we will be installing mono in

mkdir -p /opt/mono cd /tmp

Download & extract source

wget http://download.mono-project.com/sources/mono/mono-2.10.2.tar.bz2wget http://download.mono-project.com/sources/xsp/xsp-2.10.2.tar.bz2wget http://download.mono-project.com/sources/mod_mono/mod_mono-2.10.tar.bz2wget http://download.mono-project.com/sources/libgdiplus/libgdiplus-2.10.tar.bz2tar -xjf mono-2.10.2.tar.bz2tar -xjf xsp-2.10.2.tar.bz2tar -xjf mod_mono-2.10.tar.bz2tar -xjf libgdiplus-2.10.tar.bz2

compile and install libgdiplus

cd libgdiplus-2.10./configure --prefix=/opt/monomake ; make install

compile and install mono

cd ../mono-2.10.2./configure  --prefix=/opt/mono --with-libgdiplus=/opt/monomake ; make install

Set enviroment vars(make sure to also modify ~/.bash_profile)

export PATH=$PATH:/opt/mono/binexport PKG_CONFIG_PATH=/opt/mono/lib/pkgconfig

compile and install xsp

cd ../xsp-2.10.2./configure --prefix=/opt/monomake ; make install

compile and install mod_mono

cd ../mod_mono-2.10./configure --prefix=/opt/mono --with-mono-prefix=/opt/monomake ; make installmv /etc/httpd/conf/mod_mono.conf /etc/httpd/conf.d/ http://stackoverflow.com/questions/14901271/installing-mod-mono-and-xsp4-on-centos-6-3

转载于:https://www.cnblogs.com/moher/archive/2013/05/29/3105284.html

你可能感兴趣的文章
生成器函数
查看>>
Google(谷歌)中国工程研究院 工程师 方坤 对学生朋友的一些建议
查看>>
oracle 优化——索引与组合索引
查看>>
android基础—尺寸单位和屏幕适配
查看>>
小试 ScriptManager
查看>>
异常处理
查看>>
C/S模型之消息传输
查看>>
一道int与二进制加减题
查看>>
Java中输入判定的错误和纠正
查看>>
详解Nginx 13: Permission denied 解决方案
查看>>
InPlace Transition of a matrix
查看>>
Project Euler 26 Reciprocal cycles( 分数循环节 )
查看>>
做了几道简单的基础题,慢慢熟悉循环
查看>>
元素的多种延时等待(&页面的超时处理)
查看>>
ios 后台发送邮件之SKPSMTPMessage的使用
查看>>
JavaScript学习
查看>>
3014C语言_运算符
查看>>
202702算法_二分法查找
查看>>
Win10 UWP开发实现Bing翻译
查看>>
各种不同类型的类
查看>>