Files
harbour-core/harbour/contrib/hbfimage/make_gcc.sh
Viktor Szakats e4223a02a0 2008-07-08 08:29 UTC+0200 Viktor Szakats (harbour.01 syenar hu)
* contrib/hbodbc/odbc.c
     ! Fixed compilation error with Pelles C 5.00.1.
     * Some formatting.

   * contrib/hbw32/dllcall.c
     + Two TOFIXes added for Win64 support.
     ! One Warning fixed under Win64.

   * contrib/hbfimage/make_gcc.sh
   * contrib/hbfimage/make_b32.bat
   * contrib/hbfimage/make_vc.bat
     ! Corrected to look in Dist subdir instead of 'source', 
       so that simple .dll ditribution is enough to compile.
2008-07-08 06:37:36 +00:00

25 lines
673 B
Bash
Executable File

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