diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 4e8a3889dc..849ef98408 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -8,6 +8,11 @@ 2009-12-31 13:59 UTC+0100 Foo Bar (foo.bar foobar.org) */ +2009-02-22 19:34 UTC+0100 Viktor Szakats (harbour.01 syenar hu) + * bin/postinst.sh + % Deleted part generating hbfm/hbfmmt libs. Now this is + done my GNU make. + 2009-02-22 18:33 UTC+0100 Viktor Szakats (harbour.01 syenar hu) * bin/hb-func.sh ! Fixed stupid typos after testing on Linux. diff --git a/harbour/bin/postinst.sh b/harbour/bin/postinst.sh index a835e4b272..c6952fe017 100755 --- a/harbour/bin/postinst.sh +++ b/harbour/bin/postinst.sh @@ -81,20 +81,4 @@ then [ "$HB_COMPILER" = "mingw" ] || [ "$HB_COMPILER" = "mingwce" ]; then mk_hblibso "${hb_root}" fi - # build hbfm lib with memory statistic - (cd ${hb_root}/source/vm - export HB_USER_CFLAGS="${HB_USER_CFLAGS//-DHB_FM_STATISTICS_OFF/} -DHB_FM_STATISTICS" - rm -f fm.o - ${MAKE} -r fm.o - ${AR} ${AR_OPT} ${HB_LIB_INSTALL}/libhbfm.a fm.o - [ -n "${RANLIB}" ] && ${RANLIB} ${HB_LIB_INSTALL}/libhbfm.a - rm -f fm.o - if [ "${HB_ARCHITECTURE}" != "dos" ]; then - cd vmmt - ${MAKE} -r fm.o - ${AR} ${AR_OPT} ${HB_LIB_INSTALL}/libhbfmmt.a fm.o - [ -n "${RANLIB}" ] && ${RANLIB} ${HB_LIB_INSTALL}/libhbfmmt.a - rm -f fm.o - fi - ) fi