<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Freeswitch on Mathias WOLFF</title><link>https://www.blog-des-telecoms.com/en/tags/freeswitch/</link><description>Recent content in Freeswitch on Mathias WOLFF</description><generator>Hugo</generator><language>en-US</language><copyright>&lt;a href="https://www.blog-des-telecoms.com"&gt;Blog des télécoms&lt;/a&gt; © 2009 - 2026 by &lt;a href="https://www.linkedin.com/in/mathias-wolff-47a7941/"&gt;Mathias WOLFF&lt;/a&gt; is licensed under &lt;a href="https://creativecommons.org/licenses/by-nc-sa/4.0/"&gt;CC BY-NC-SA 4.0&lt;/a&gt;&lt;img src="https://mirrors.creativecommons.org/presskit/icons/cc.svg" style="max-width: 1em;max-height:1em;margin-left: .2em;"&gt;&lt;img src="https://mirrors.creativecommons.org/presskit/icons/by.svg" style="max-width: 1em;max-height:1em;margin-left: .2em;"&gt;&lt;img src="https://mirrors.creativecommons.org/presskit/icons/nc.svg" style="max-width: 1em;max-height:1em;margin-left: .2em;"&gt;&lt;img src="https://mirrors.creativecommons.org/presskit/icons/sa.svg" style="max-width: 1em;max-height:1em;margin-left: .2em;"&gt;</copyright><lastBuildDate>Thu, 07 May 2026 18:07:06 +0200</lastBuildDate><atom:link href="https://www.blog-des-telecoms.com/en/tags/freeswitch/index.xml" rel="self" type="application/rss+xml"/><item><title>Howto compile cdr_pg_csv freeswitch module on debian / ubuntu</title><link>https://www.blog-des-telecoms.com/en/blog/howto-compile-cdr_pg_csv-freeswitch-module-on-debian-ubuntu/</link><pubDate>Thu, 18 Apr 2013 17:42:00 +0000</pubDate><guid>https://www.blog-des-telecoms.com/en/blog/howto-compile-cdr_pg_csv-freeswitch-module-on-debian-ubuntu/</guid><description>&lt;p&gt;With the standard Makefile configuration delivered form git, you can&amp;rsquo;t compile cdr_pg_csv. You need top edit theMakefile file of cdr_pg_csv module. The file si located here : src/mod/event_handlers/mod_cdr_pg_csv/Makefile . Copy and past the following code :&lt;/p&gt;
&lt;pre tabindex="0"&gt;&lt;code&gt;UNAME := $(shell uname -s)
ifeq ($(UNAME),SunOS)
ISA64 := $(shell isainfo -n)
LOCAL_CFLAGS=-I/usr/include/postgresql
ifneq (,$(findstring m64,$(CFLAGS)))
LOCAL_LDFLAGS=-L/usr/pgsql-9.1/lib/$(ISA64) -R/usr/pgsql-9.1/lib/$(ISA64) -lpq -static
else
LOCAL_LDFLAGS=-L/usr/pgsql-9.1/lib -R/usr/pgsql-9.1/lib -lpq -static
endif
else
LOCAL_CFLAGS=-I/usr/include/postgresql
LOCAL_LDFLAGS=-L/usr/pgsql-9.1/lib -lpq -static
endif
include ../../../../build/modmake.rules
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Now, we are ready for make, so do :&lt;/p&gt;</description></item><item><title>Install freeswitch compiled with odbc PostgreSQL on debian wheezy</title><link>https://www.blog-des-telecoms.com/en/blog/install-freeswitch-compiled-with-odbc-postgresql-on-debian-wheezy/</link><pubDate>Thu, 18 Apr 2013 17:05:00 +0000</pubDate><guid>https://www.blog-des-telecoms.com/en/blog/install-freeswitch-compiled-with-odbc-postgresql-on-debian-wheezy/</guid><description>&lt;p&gt;This is my first howto in english. As I will release in some days, my project name pyfreebilling (wholesale voip platefom based on Freeswitch, PostgeSQL and Django), i write the first installation step : howto compile and install freeswitch / odbc and postgresql on debian wheezy.&lt;/p&gt;
&lt;!-- more --&gt;
&lt;h2 id="prerequisites"&gt;Prerequisites&lt;a href="#prerequisites" class="post-heading__anchor" aria-hidden="true"&gt;#&lt;/a&gt;
&lt;/h2&gt;
&lt;p&gt;You need to install these packages :&lt;/p&gt;
&lt;pre tabindex="0"&gt;&lt;code&gt;apt-get install git-core build-essential autoconf automake libtool libncurses5 libncurses5-dev gawk libjpeg-dev zlib1g-dev pkg-config libssl-dev libpq-dev unixodbc-dev odbc-postgresql postgresql postgresql-client
&lt;/code&gt;&lt;/pre&gt;&lt;h2 id="configuration"&gt;Configuration&lt;a href="#configuration" class="post-heading__anchor" aria-hidden="true"&gt;#&lt;/a&gt;
&lt;/h2&gt;
&lt;p&gt;You download freeswitch using git :&lt;/p&gt;</description></item></channel></rss>