diff options
author | Tor Lillqvist <tml@iki.fi> | 2012-12-11 23:06:47 +0200 |
---|---|---|
committer | Peter Foley <pefoley2@verizon.net> | 2012-12-18 20:52:24 -0500 |
commit | 12152d253e48353254645b768c28d67e1e280a70 (patch) | |
tree | e03c55911e16ec73056a21795411fa5081f71bd2 /vcl/Module_vcl.mk | |
parent | 3b87d3dd507cd48286160e62383f48e2f70f0067 (diff) |
Replace GUIBASE checks with equivalent OS checks
The idea is to get rid of GUIBASE and GUI checks as much as possible.
GUIBASE=aqua <=> OS=MACOSX
GUIBASE=WIN <=> OS=WNT
GUIBASE=cocoatouch <=> OS=IOS
GUIBASE=android <=> OS=ANDROID
Don't set GUIBASE to these values any more in configure.ac
either.
GUIBASE_FOR_BUILD is not used anywhere.
Conflicts:
configure.ac
postprocess/packcomponents/makefile.mk
postprocess/packregistry/makefile.mk
Change-Id: Ie0526b40e1073f2328ba6c333e28752104b0fed3
Diffstat (limited to 'vcl/Module_vcl.mk')
-rw-r--r-- | vcl/Module_vcl.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/Module_vcl.mk b/vcl/Module_vcl.mk index 38c730db7cff..362acb3560c4 100644 --- a/vcl/Module_vcl.mk +++ b/vcl/Module_vcl.mk @@ -70,13 +70,13 @@ $(eval $(call gb_Module_add_targets,vcl,\ endif endif -ifeq ($(GUIBASE),aqua) +ifeq ($(OS),MACOSX) $(eval $(call gb_Module_add_targets,vcl,\ Zip_osxres \ )) endif -ifeq ($(GUIBASE),WIN) +ifeq ($(OS),WNT) $(eval $(call gb_Module_add_targets,vcl,\ WinResTarget_vcl \ )) |