Bug 471359 - export js/ system_wrappers to their own directory. r=jim

This commit is contained in:
Alexander Sack 2009-01-13 19:56:41 +01:00
parent 47618549c5
commit 7657ab39b7
2 changed files with 5 additions and 5 deletions

View File

@ -89,13 +89,13 @@ endif
ifdef WRAP_SYSTEM_INCLUDES
export::
if test ! -d system_wrappers; then mkdir system_wrappers; fi
if test ! -d system_wrappers_js; then mkdir system_wrappers_js; fi
$(PERL) $(srcdir)/preprocessor.pl $(DEFINES) $(ACDEFINES) \
-DBUILD_STATIC_LIBS=$(BUILD_STATIC_LIBS) \
$(srcdir)/system-headers | $(PERL) $(srcdir)/make-system-wrappers.pl system_wrappers
$(INSTALL) system_wrappers $(DIST)/include
$(srcdir)/system-headers | $(PERL) $(srcdir)/make-system-wrappers.pl system_wrappers_js
$(INSTALL) system_wrappers_js $(DIST)/include
GARBAGE_DIRS += system_wrappers
GARBAGE_DIRS += system_wrappers_js
endif
FORCE:

View File

@ -2844,7 +2844,7 @@ EOF
])
if test "$ac_cv_have_visibility_builtin_bug" = "no" -a \
"$ac_cv_have_visibility_class_bug" = "no"; then
VISIBILITY_FLAGS='-I$(DIST)/include/system_wrappers -include $(topsrcdir)/config/gcc_hidden.h'
VISIBILITY_FLAGS='-I$(DIST)/include/system_wrappers_js -include $(topsrcdir)/config/gcc_hidden.h'
WRAP_SYSTEM_INCLUDES=1
else
VISIBILITY_FLAGS='-fvisibility=hidden'