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.
This commit is contained in:
1422
harbour/ChangeLog
1422
harbour/ChangeLog
File diff suppressed because it is too large
Load Diff
@@ -4,7 +4,7 @@
|
||||
# $Id$
|
||||
#
|
||||
|
||||
if [ "${HB_INC_APOLLO}" == "" ]
|
||||
if [ "${HB_INC_APOLLO}" = "" ]
|
||||
then
|
||||
echo "---------------------------------------------------------------"
|
||||
echo "IMPORTANT: You will need Apollo package installed and this"
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
# $Id$
|
||||
#
|
||||
|
||||
if [ "${HB_INC_CURL}" == "" ]
|
||||
if [ "${HB_INC_CURL}" = "" ]
|
||||
then
|
||||
echo "---------------------------------------------------------------"
|
||||
echo "IMPORTANT: You will need the 'libcurl' package installed and this"
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
# $Id$
|
||||
#
|
||||
|
||||
if [ "${HB_INC_FIREBIRD}" == "" ]
|
||||
if [ "${HB_INC_FIREBIRD}" = "" ]
|
||||
then
|
||||
echo "---------------------------------------------------------------"
|
||||
echo "IMPORTANT: You'll need Firebird package and this envvar"
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
# $Id$
|
||||
#
|
||||
|
||||
if [ "${HB_INC_FREEIMAGE}" == "" ]
|
||||
if [ "${HB_INC_FREEIMAGE}" = "" ]
|
||||
then
|
||||
echo "---------------------------------------------------------------"
|
||||
echo "IMPORTANT: You will need FreeImage package installed and this"
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
# $Id$
|
||||
#
|
||||
|
||||
if [ "${HB_INC_GD}" == "" ]
|
||||
if [ "${HB_INC_GD}" = "" ]
|
||||
then
|
||||
echo "---------------------------------------------------------------"
|
||||
echo "IMPORTANT: You will need GD package installed and this"
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
# $Id$
|
||||
#
|
||||
|
||||
if [ "${HB_INC_LIBHARU}" == "" ]
|
||||
if [ "${HB_INC_LIBHARU}" = "" ]
|
||||
then
|
||||
echo "---------------------------------------------------------------"
|
||||
echo "IMPORTANT: You will need Haru Free PDF Library (libharu) DLL
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
# $Id$
|
||||
#
|
||||
|
||||
if [ "${HB_INC_MYSQL}" == "" ]
|
||||
if [ "${HB_INC_MYSQL}" = "" ]
|
||||
then
|
||||
echo "---------------------------------------------------------------"
|
||||
echo "IMPORTANT: You will need MYSQL package installed and this"
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
# $Id$
|
||||
#
|
||||
|
||||
if [ "${HB_INC_PGSQL}" == "" ]
|
||||
if [ "${HB_INC_PGSQL}" = "" ]
|
||||
then
|
||||
echo "---------------------------------------------------------------"
|
||||
echo "IMPORTANT: You will need PostgreSQL package installed and this"
|
||||
|
||||
@@ -98,9 +98,9 @@ INCLUDE_DIR = $(HB_ROOT)/include
|
||||
# Macros to access Harbour executable and other goodies
|
||||
#**********************************************************
|
||||
|
||||
!ifndef HB
|
||||
ifndef HB
|
||||
HB = $(BIN_DIR)harbour
|
||||
!endif
|
||||
endif
|
||||
|
||||
#**********************************************************
|
||||
# C compiler definition and C flags. These should never have to change.
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
# $Id$
|
||||
#
|
||||
|
||||
if [ "${HB_INC_ADS}" == "" ]
|
||||
if [ "${HB_INC_ADS}" = "" ]
|
||||
then
|
||||
echo "---------------------------------------------------------------"
|
||||
echo "IMPORTANT: You will need Advantage Client Engine (5.0 or upper)"
|
||||
|
||||
Reference in New Issue
Block a user