-
Notifications
You must be signed in to change notification settings - Fork 59
Building on Ubuntu Linux
Mark Lesswing edited this page Mar 7, 2017
·
1 revision
From Chandler Prall:
The following are the steps I took to compile and install libRETS 1.3.1 on Ubuntu 8.10. This compiles for Python2.5 support only. Additional packages may be required to support Java, Perl, etc. Also, you'll need to remove the --disable-* switches when you ./configure if you want that support.
Download libRETS package from web: http://www.crt.realtors.org/projects/rets/librets/files/librets-1.3.1.tar.gz gunzip gz file and extract tar Check for / apt-get dependencies
- Python2.5
- python-dev
- sun-java5-jdk
- make
- gcc
- g++
- libexpat1-dev
- libcurl4-openssl-dev
- libboost-dev
- libboost-filesystem-dev
- libantlr-dev
- swig
- curl7.18.2: http://archive.ubuntu.com/ubuntu/pool/main/c/curl/curl_7.18.2.orig.tar.gz
ln -s /usr/bin/runantlr /usr/bin/antlr cd into libRETS-1.3.1 directory ./configure --enable-shared_dependencies --enable-depends --disable-java --disable-perl --disable-php --enable-PIC PYTHON=/usr/bin/python make make install