mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-24 00:47:57 -05:00
Postgresql stuff needs testing as I commented the compileflags in src/Makefile.am - Infos will be posted on the devel mailinglist git-svn-id: http://svn.osgeo.org/qgis/trunk@983 c8812cc2-4d05-0410-92ff-de0c093fc19c
10 lines
270 B
Bash
Executable File
10 lines
270 B
Bash
Executable File
#!/bin/sh
|
|
echo Configuring build environment for QGIS
|
|
aclocal \
|
|
&& libtoolize --force --copy \
|
|
&& autoheader --force -W all \
|
|
&& automake --add-missing --foreign --copy \
|
|
&& autoconf --force \
|
|
&& echo Now running configure to configure QGIS \
|
|
&& ./configure
|