Fix the fail of make install with --disable-shared on Win32
This commit is contained in:
parent
cd280f6532
commit
997a64a67b
|
@ -1,5 +1,6 @@
|
|||
tags
|
||||
TAGS
|
||||
*.exe
|
||||
*.tar.gz
|
||||
.libs
|
||||
.deps
|
||||
|
|
|
@ -104,6 +104,7 @@ AC_SUBST(WARN_CFLAGS)
|
|||
dnl ==========================================================================
|
||||
|
||||
AM_CONDITIONAL(CROSS_COMPILING, test $cross_compiling = yes)
|
||||
AM_CONDITIONAL(ENABLE_SHARED, test "$enable_shared" = "yes")
|
||||
|
||||
dnl ==========================================================================
|
||||
|
||||
|
|
|
@ -134,9 +134,11 @@ libfontconfig_la_LIBADD = $(ICONV_LIBS) $(FREETYPE_LIBS) $(LIBXML2_LIBS) $(EXPAT
|
|||
|
||||
libfontconfig_la_DEPENDENCIES = $(fontconfig_def_dependency)
|
||||
|
||||
if ENABLE_SHARED
|
||||
install-data-local: install-ms-import-lib install-libtool-import-lib
|
||||
|
||||
uninstall-local: uninstall-ms-import-lib uninstall-libtool-import-lib
|
||||
endif
|
||||
|
||||
PUBLIC_FILES = \
|
||||
$(top_srcdir)/fontconfig/fontconfig.h \
|
||||
|
|
Loading…
Reference in New Issue