2009-08-12 14:59 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)

* config/wce/mingwarm.cf
  * config/win/mingw.cf
    - Deleted ranlib usage. I've tested with mingw 3.4.2, 4.4.0
      and mingwarm 4.4.1, and the runlib command made no difference.
      If someone knows the reason why was it there, pls shout.

  * config/bsd/global.cf
  * config/darwin/global.cf
  * config/linux/global.cf
    - Deleted RANLIB variables. They are not used anywere through the
      make process.
      (only mingw/mingwarm uses it)
This commit is contained in:
Viktor Szakats
2009-08-12 13:01:23 +00:00
parent cebe0c72ed
commit d1a2ed4e8a
6 changed files with 16 additions and 11 deletions

View File

@@ -17,6 +17,20 @@
past entries belonging to author(s): Viktor Szakats.
*/
2009-08-12 14:59 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* config/wce/mingwarm.cf
* config/win/mingw.cf
- Deleted ranlib usage. I've tested with mingw 3.4.2, 4.4.0
and mingwarm 4.4.1, and the runlib command made no difference.
If someone knows the reason why was it there, pls shout.
* config/bsd/global.cf
* config/darwin/global.cf
* config/linux/global.cf
- Deleted RANLIB variables. They are not used anywere through the
make process.
(only mingw/mingwarm uses it)
2009-08-12 14:47 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* config/rules.cf
! Changed CC_RULE and CPP_RULE to have CC_OUT option _before_ CC_IN.

View File

@@ -11,4 +11,3 @@ DYN_EXT := .so
HB_GT_LIBS += gttrm
MAKE := gmake
RANLIB := ranlib

View File

@@ -9,5 +9,3 @@ DYN_PRE := lib
DYN_EXT := .dylib
HB_GT_LIBS += gttrm
RANLIB := ranlib

View File

@@ -9,5 +9,3 @@ DYN_PRE := lib
DYN_EXT := .so
HB_GT_LIBS += gttrm
RANLIB := ranlib

View File

@@ -43,10 +43,8 @@ LDLIBS := $(foreach lib,$(LIBS),-l$(lib))
LDLIBS += -lwininet -lws2
LDFLAGS += $(LIBPATHS)
RANLIB := $(HB_CCPREFIX)ranlib
AR := $(HB_CCPREFIX)ar
ARFLAGS :=
AR_RULE = $(AR) $(ARFLAGS) $(HB_USER_AFLAGS) cr $(LIB_DIR)/$@ $(^F) && $(RANLIB) $(LIB_DIR)/$@ || $(RM) $(subst /,$(DIRSEP),$(LIB_DIR)/$@)
AR_RULE = $(AR) $(ARFLAGS) $(HB_USER_AFLAGS) cr $(LIB_DIR)/$@ $(^F) || $(RM) $(subst /,$(DIRSEP),$(LIB_DIR)/$@)
include $(TOP)$(ROOT)config/rules.cf

View File

@@ -53,10 +53,8 @@ LDLIBS += -luser32 -lgdi32 -lws2_32
LDFLAGS += $(LIBPATHS)
RANLIB := $(HB_CCPREFIX)ranlib
AR := $(HB_CCPREFIX)ar
ARFLAGS :=
AR_RULE = $(AR) $(ARFLAGS) $(HB_USER_AFLAGS) cr $(LIB_DIR)/$@ $(^F) && $(RANLIB) $(LIB_DIR)/$@ || $(RM) $(subst /,$(DIRSEP),$(LIB_DIR)/$@)
AR_RULE = $(AR) $(ARFLAGS) $(HB_USER_AFLAGS) cr $(LIB_DIR)/$@ $(^F) || $(RM) $(subst /,$(DIRSEP),$(LIB_DIR)/$@)
include $(TOP)$(ROOT)config/rules.cf