* 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.
25 lines
646 B
Bash
Executable File
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
|