From: Steinar H. Gunderson Date: Thu, 8 May 2014 04:17:50 +0000 (-0700) Subject: Do not export inlines from the shared library by default. Reduces the number of expor... X-Git-Tag: 1.1.2~4 X-Git-Url: https://git.sesse.net/?p=movit;a=commitdiff_plain;h=7d51b32062d91ccf46434568a75c5e91805c4750 Do not export inlines from the shared library by default. Reduces the number of exports somewhat, and helps code generation a tiny bit. --- diff --git a/Makefile.in b/Makefile.in index da11477..bf9a316 100644 --- a/Makefile.in +++ b/Makefile.in @@ -22,7 +22,7 @@ with_coverage = @with_coverage@ CC=@CC@ CXX=@CXX@ -CXXFLAGS=-Wall @CXXFLAGS@ -I$(GTEST_DIR)/include @SDL2_CFLAGS@ @SDL_CFLAGS@ @Eigen3_CFLAGS@ @epoxy_CFLAGS@ @FFTW3_CFLAGS@ +CXXFLAGS=-Wall @CXXFLAGS@ -fvisibility-inlines-hidden -I$(GTEST_DIR)/include @SDL2_CFLAGS@ @SDL_CFLAGS@ @Eigen3_CFLAGS@ @epoxy_CFLAGS@ @FFTW3_CFLAGS@ ifeq ($(with_SDL2),yes) CXXFLAGS += -DHAVE_SDL2 endif