Files
harbour-core/harbour/contrib/hbcurl/make_gcc.sh
Viktor Szakats 7c1c27e27d 2008-07-03 10:09 UTC+0200 Viktor Szakats (harbour.01 syenar hu)
* contrib/hbcurl/make_gcc.sh
   * contrib/hbgd/tests/bld.sh
   * contrib/hbhpdf/make_gcc.sh
   * contrib/hbsqlit2/make_gcc.sh
   * contrib/hbsqlit3/make_gcc.sh
   * contrib/hbvpdf/make_gcc.sh
     + svn propset svn:executable ON *
     ; Thanks Marek. I'm updating my local files to avoid 
       this in the future.
2008-07-03 08:12:26 +00:00

25 lines
646 B
Bash
Executable File

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