Files
harbour-core/harbour/contrib/hbpgsql/make_gcc.sh
Marek Paliwoda 6eb3ee6d2d 2008-07-03 09:15 UTC+0100 Marek Paliwoda (mpaliwoda at interia pl)
* harbour/contrib/mtpl_gcc.mak
     ! Fixed copy/paste error in ifdef/endif

   * harbour/contrib/hbapollo/make_gcc.sh
   * harbour/contrib/hbcurl/make_gcc.sh
   * harbour/contrib/hbfbird/make_gcc.sh
   * harbour/contrib/hbfimage/make_gcc.sh
   * harbour/contrib/hbgd/make_gcc.sh
   * harbour/contrib/hbhpdf/make_gcc.sh
   * harbour/contrib/hbmysql/make_gcc.sh
   * harbour/contrib/hbpgsql/make_gcc.sh
   * harbour/contrib/rddads/make_gcc.sh
     * Changed "==" to "=" to allow compilation on Ubuntu 8.04.
       For some reasons I got error when "==" was used.
2008-07-03 07:25:15 +00:00

25 lines
658 B
Bash
Executable File

#!/bin/sh
#
# $Id$
#
if [ "${HB_INC_PGSQL}" = "" ]
then
echo "---------------------------------------------------------------"
echo "IMPORTANT: You will need PostgreSQL package installed and this"
echo " envvar to be set to successfully build this library:"
echo " export HB_INC_PGSQL=C:/Posgres/include"
echo " or"
echo " export HB_INC_PGSQL=/usr/include/postgres"
echo "---------------------------------------------------------------"
exit 1
fi
export CFLAGS=""
for I in ${HB_INC_PGSQL}; do
CFLAGS="${CFLAGS} -I${I}"
done
../mtpl_gcc.sh $1 $2 $3 $4 $5 $6 $7 $8 $9
unset CFLAGS