diff --git a/harbour/ChangeLog b/harbour/ChangeLog index ca3619d7fc..5d2a0cb5dc 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -8,6 +8,10 @@ 2008-12-31 13:59 UTC+0100 Foo Bar */ +2008-07-29 00:10 UTC+0200 Viktor Szakats (harbour.01 syenar hu) + * contrib/hbhpdf/Makefile + ! Refixed to exclude hbhpdf from DOS builds. + 2008-07-28 20:41 UTC+0200 Viktor Szakats (harbour.01 syenar hu) * tests/ainstest.prg * tests/array16.prg diff --git a/harbour/contrib/hbhpdf/Makefile b/harbour/contrib/hbhpdf/Makefile index ca92640dd1..219097cd05 100644 --- a/harbour/contrib/hbhpdf/Makefile +++ b/harbour/contrib/hbhpdf/Makefile @@ -6,6 +6,8 @@ ROOT = ../../ LIBNAME=hbhpdf +ifneq ($(HB_ARCHITECTURE),dos) + ifeq ($(HB_INC_LIBHARU),) ifeq ($(HB_XBUILD),) HB_INC_LIBHARU = /usr/include @@ -36,3 +38,6 @@ install:: else include $(TOP)$(ROOT)config/none.cf endif +else +include $(TOP)$(ROOT)config/none.cf +endif