Changes between Version 43 and Version 44 of MovedToGitHub/Building
- Timestamp:
- Jan 3, 2010, 3:05:00 PM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
MovedToGitHub/Building
v43 v44 40 40 * libglib2.0-dev 41 41 42 Or simply run the following command: 43 {{{ 44 $ sudo apt-get install build-essential automake autoconf libtool pkg-config libcurl4-openssl-dev intltool libxml2-dev libgtk2.0-dev libnotify-dev libglib2.0-dev 45 }}} 46 42 47 ''After you install those you can skip [#Buildingfromatarball to this section].'' 43 48 44 49 ==== CentOS 5.4 ==== 45 To install the packages you need to build Transmission, run the following command:[[BR]] 50 The packages you need are: 51 * gcc 52 * gcc-c++ 53 * m4 54 * make 55 * automake 56 * libtool 57 * gettext 58 * openssl-devel 59 60 Or simply run the following command: 46 61 {{{ 47 yum install gcc gcc-c++ m4 make automake libtool gettext openssl-devel62 $ yum install gcc gcc-c++ m4 make automake libtool gettext openssl-devel 48 63 }}} 49 64 … … 55 70 Before building Transmission, you need to set the pkgconfig environment setting: 56 71 {{{ 57 export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig72 $ export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig 58 73 }}} 59 74