From 9990488df7adbdf9da209b5a7e3e8ff382104f26 Mon Sep 17 00:00:00 2001 From: Przemyslaw Czerpak Date: Thu, 7 Aug 2008 03:06:08 +0000 Subject: [PATCH] 2008-08-07 05:05 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl) * harbour/include/hbdefs.h ! fixed default printf length modifier for long long integer values * harbour/harbour.spec * harbour/harbour-ce-spec * harbour/harbour-w32-spec ! fixed for new FM library name --- harbour/ChangeLog | 9 +++++++++ harbour/harbour-ce-spec | 2 +- harbour/harbour-w32-spec | 2 +- harbour/harbour.spec | 2 +- harbour/include/hbdefs.h | 4 +--- 5 files changed, 13 insertions(+), 6 deletions(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index f06e40f0f9..d9ae0cefde 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -8,6 +8,15 @@ 2008-12-31 13:59 UTC+0100 Foo Bar */ +2008-08-07 05:05 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl) + * harbour/include/hbdefs.h + ! fixed default printf length modifier for long long integer values + + * harbour/harbour.spec + * harbour/harbour-ce-spec + * harbour/harbour-w32-spec + ! fixed for new FM library name + 2008-08-07 03:35 UTC+0200 Viktor Szakats (harbour.01 syenar hu) * contrib/gtwvg/gtwvg.c * contrib/gtwvg/wvgutils.c diff --git a/harbour/harbour-ce-spec b/harbour/harbour-ce-spec index 0be72f4b64..76847c91c2 100644 --- a/harbour/harbour-ce-spec +++ b/harbour/harbour-ce-spec @@ -308,7 +308,7 @@ rm -fR $RPM_BUILD_ROOT %{_libdir}/%{name}/libhbcommon.a %{_libdir}/%{name}/libhbcplr.a %{_libdir}/%{name}/libhbdebug.a -%{_libdir}/%{name}/libfm.a +%{_libdir}/%{name}/libhbfm.a %{_libdir}/%{name}/librddfpt.a %{_libdir}/%{name}/librddcdx.a %{_libdir}/%{name}/librddntx.a diff --git a/harbour/harbour-w32-spec b/harbour/harbour-w32-spec index a23b7886d4..505ac4c499 100644 --- a/harbour/harbour-w32-spec +++ b/harbour/harbour-w32-spec @@ -308,7 +308,7 @@ rm -fR $RPM_BUILD_ROOT %{_libdir}/%{name}/libhbcommon.a %{_libdir}/%{name}/libhbcplr.a %{_libdir}/%{name}/libhbdebug.a -%{_libdir}/%{name}/libfm.a +%{_libdir}/%{name}/libhbfm.a %{_libdir}/%{name}/librddfpt.a %{_libdir}/%{name}/librddcdx.a %{_libdir}/%{name}/librddntx.a diff --git a/harbour/harbour.spec b/harbour/harbour.spec index d245c1aab1..358c5487e1 100644 --- a/harbour/harbour.spec +++ b/harbour/harbour.spec @@ -594,7 +594,7 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/%{name}/libhbcommon.a %{_libdir}/%{name}/libhbcplr.a %{_libdir}/%{name}/libhbdebug.a -%{_libdir}/%{name}/libfm.a +%{_libdir}/%{name}/libhbfm.a %{_libdir}/%{name}/librddfpt.a %{_libdir}/%{name}/librddcdx.a %{_libdir}/%{name}/librddntx.a diff --git a/harbour/include/hbdefs.h b/harbour/include/hbdefs.h index a7e9abbe84..71d9113a3d 100644 --- a/harbour/include/hbdefs.h +++ b/harbour/include/hbdefs.h @@ -656,10 +656,8 @@ typedef unsigned long HB_COUNTER; #ifndef PFLL # if defined( __BORLANDC__ ) || defined( _MSC_VER ) # define PFLL "I64" -# elif defined( __LCC__ ) -# define PFLL "ll" # else -# define PFLL "L" +# define PFLL "ll" # endif #endif #ifndef PFHL