From 4a2e6a156a2480de9c935808cb7c33a0bc2b9b2b Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Thu, 22 Apr 2010 23:06:16 +0000 Subject: [PATCH] 2010-04-23 01:05 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) * config/beos/gcc.mk * config/bsd/gcc.mk * config/wce/mingwarm.mk * config/darwin/gcc.mk * config/darwin/clang.mk * config/hpux/gcc.mk * config/dos/djgpp.mk * config/win/mingw.mk * config/win/cygwin.mk * config/linux/gcc.mk * config/linux/clang.mk * config/os2/gcc.mk * config/sunos/gcc.mk * Cosmetic sync with hbmk2. ('-Wall -W' -> '-W -Wall') --- harbour/ChangeLog | 16 ++++++++++++++++ harbour/config/beos/gcc.mk | 2 +- harbour/config/bsd/gcc.mk | 2 +- harbour/config/darwin/clang.mk | 2 +- harbour/config/darwin/gcc.mk | 2 +- harbour/config/dos/djgpp.mk | 2 +- harbour/config/hpux/gcc.mk | 2 +- harbour/config/linux/clang.mk | 2 +- harbour/config/linux/gcc.mk | 2 +- harbour/config/os2/gcc.mk | 2 +- harbour/config/sunos/gcc.mk | 2 +- harbour/config/wce/mingwarm.mk | 2 +- harbour/config/win/cygwin.mk | 2 +- harbour/config/win/mingw.mk | 2 +- 14 files changed, 29 insertions(+), 13 deletions(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 6cb3b8b21a..8c0c0192a7 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -17,6 +17,22 @@ past entries belonging to author(s): Viktor Szakats. */ +2010-04-23 01:05 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) + * config/beos/gcc.mk + * config/bsd/gcc.mk + * config/wce/mingwarm.mk + * config/darwin/gcc.mk + * config/darwin/clang.mk + * config/hpux/gcc.mk + * config/dos/djgpp.mk + * config/win/mingw.mk + * config/win/cygwin.mk + * config/linux/gcc.mk + * config/linux/clang.mk + * config/os2/gcc.mk + * config/sunos/gcc.mk + * Cosmetic sync with hbmk2. ('-Wall -W' -> '-W -Wall') + 2010-04-23 01:02 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) * utils/hbmk2/hbmk2.pt_BR.po * utils/hbmk2/hbmk2.hu_HU.po diff --git a/harbour/config/beos/gcc.mk b/harbour/config/beos/gcc.mk index e827b60ab4..ca0ac2c01d 100644 --- a/harbour/config/beos/gcc.mk +++ b/harbour/config/beos/gcc.mk @@ -21,7 +21,7 @@ CC_OUT := -o CFLAGS += -I. -I$(HB_INC_COMPILE) ifneq ($(HB_BUILD_WARN),no) - CFLAGS += -Wall -W + CFLAGS += -W -Wall endif ifneq ($(HB_BUILD_OPTIM),no) diff --git a/harbour/config/bsd/gcc.mk b/harbour/config/bsd/gcc.mk index cd2881734b..ec0bb6c382 100644 --- a/harbour/config/bsd/gcc.mk +++ b/harbour/config/bsd/gcc.mk @@ -19,7 +19,7 @@ CC_OUT := -o CFLAGS += -I. -I$(HB_INC_COMPILE) ifneq ($(HB_BUILD_WARN),no) - CFLAGS += -Wall -W + CFLAGS += -W -Wall endif ifneq ($(HB_BUILD_OPTIM),no) diff --git a/harbour/config/darwin/clang.mk b/harbour/config/darwin/clang.mk index e0664a8378..baa987d3ab 100644 --- a/harbour/config/darwin/clang.mk +++ b/harbour/config/darwin/clang.mk @@ -28,7 +28,7 @@ CFLAGS += -I. -I$(HB_INC_COMPILE) CFLAGS += -fno-common ifneq ($(HB_BUILD_WARN),no) - CFLAGS += -Wall -W + CFLAGS += -W -Wall endif ifneq ($(HB_BUILD_OPTIM),no) diff --git a/harbour/config/darwin/gcc.mk b/harbour/config/darwin/gcc.mk index 567a7287bd..49815a42b2 100644 --- a/harbour/config/darwin/gcc.mk +++ b/harbour/config/darwin/gcc.mk @@ -29,7 +29,7 @@ CFLAGS += -I. -I$(HB_INC_COMPILE) CFLAGS += -fno-common ifneq ($(HB_BUILD_WARN),no) - CFLAGS += -Wall -W + CFLAGS += -W -Wall endif ifneq ($(HB_BUILD_OPTIM),no) diff --git a/harbour/config/dos/djgpp.mk b/harbour/config/dos/djgpp.mk index 1f90b49581..a596cae87a 100644 --- a/harbour/config/dos/djgpp.mk +++ b/harbour/config/dos/djgpp.mk @@ -20,7 +20,7 @@ CC_OUT := -o CFLAGS += -I. -I$(HB_INC_COMPILE) ifneq ($(HB_BUILD_WARN),no) - CFLAGS += -Wall -W + CFLAGS += -W -Wall endif ifneq ($(HB_BUILD_OPTIM),no) diff --git a/harbour/config/hpux/gcc.mk b/harbour/config/hpux/gcc.mk index d4fac19781..8b6ebcb3af 100644 --- a/harbour/config/hpux/gcc.mk +++ b/harbour/config/hpux/gcc.mk @@ -25,7 +25,7 @@ CFLAGS += -I. -I$(HB_INC_COMPILE) #LDFLAGS += -mlp64 ifneq ($(HB_BUILD_WARN),no) - CFLAGS += -Wall -W + CFLAGS += -W -Wall endif ifneq ($(HB_BUILD_OPTIM),no) diff --git a/harbour/config/linux/clang.mk b/harbour/config/linux/clang.mk index 5ded1c55aa..161f5a3eda 100644 --- a/harbour/config/linux/clang.mk +++ b/harbour/config/linux/clang.mk @@ -26,7 +26,7 @@ CC_OUT := -o CFLAGS += -I. -I$(HB_INC_COMPILE) ifneq ($(HB_BUILD_WARN),no) - CFLAGS += -Wall -W + CFLAGS += -W -Wall endif ifneq ($(HB_BUILD_OPTIM),no) diff --git a/harbour/config/linux/gcc.mk b/harbour/config/linux/gcc.mk index 94adefb621..c433a44372 100644 --- a/harbour/config/linux/gcc.mk +++ b/harbour/config/linux/gcc.mk @@ -23,7 +23,7 @@ CC_OUT := -o CFLAGS += -I. -I$(HB_INC_COMPILE) ifneq ($(HB_BUILD_WARN),no) - CFLAGS += -Wall -W + CFLAGS += -W -Wall endif ifneq ($(HB_BUILD_OPTIM),no) diff --git a/harbour/config/os2/gcc.mk b/harbour/config/os2/gcc.mk index 7522cfbe8b..45febbd99a 100644 --- a/harbour/config/os2/gcc.mk +++ b/harbour/config/os2/gcc.mk @@ -28,7 +28,7 @@ ifeq ($(HB_COMPILER),gccomf) endif ifneq ($(HB_BUILD_WARN),no) - CFLAGS += -Wall -W + CFLAGS += -W -Wall endif ifneq ($(HB_BUILD_OPTIM),no) diff --git a/harbour/config/sunos/gcc.mk b/harbour/config/sunos/gcc.mk index ae2da986ed..23fc74eb4c 100644 --- a/harbour/config/sunos/gcc.mk +++ b/harbour/config/sunos/gcc.mk @@ -23,7 +23,7 @@ CC_OUT := -o$(subst x,x, ) CFLAGS += -I. -I$(HB_INC_COMPILE) ifneq ($(HB_BUILD_WARN),no) - CFLAGS += -Wall -W + CFLAGS += -W -Wall endif ifneq ($(HB_BUILD_OPTIM),no) diff --git a/harbour/config/wce/mingwarm.mk b/harbour/config/wce/mingwarm.mk index 7ee9c1d512..fc1e39884d 100644 --- a/harbour/config/wce/mingwarm.mk +++ b/harbour/config/wce/mingwarm.mk @@ -19,7 +19,7 @@ CC_OUT := -o CFLAGS += -I. -I$(HB_INC_COMPILE) ifneq ($(HB_BUILD_WARN),no) - CFLAGS += -Wall -W + CFLAGS += -W -Wall endif ifneq ($(HB_BUILD_OPTIM),no) diff --git a/harbour/config/win/cygwin.mk b/harbour/config/win/cygwin.mk index 9f5ae65873..86b0ed6daa 100644 --- a/harbour/config/win/cygwin.mk +++ b/harbour/config/win/cygwin.mk @@ -19,7 +19,7 @@ CC_OUT := -o CFLAGS += -I. -I$(HB_INC_COMPILE) ifneq ($(HB_BUILD_WARN),no) - CFLAGS += -Wall -W + CFLAGS += -W -Wall endif ifneq ($(HB_BUILD_OPTIM),no) diff --git a/harbour/config/win/mingw.mk b/harbour/config/win/mingw.mk index 02f89159c8..9da58534aa 100644 --- a/harbour/config/win/mingw.mk +++ b/harbour/config/win/mingw.mk @@ -28,7 +28,7 @@ CFLAGS += -I. -I$(HB_INC_COMPILE) # peflags --tsaware=true ifneq ($(HB_BUILD_WARN),no) - CFLAGS += -Wall -W + CFLAGS += -W -Wall endif ifneq ($(HB_BUILD_OPTIM),no)