Register math fonts with fontconfig

* src/support/os_unix.cpp
	  (addFontResources): add the system fonts dir to the paths
	  scanned by fontconfig.
	  (restoreFontResources): remove the system fonts dir from the
	  fontconfig configuration.

	* configure.ac:
	  add check for the fontconfig devel headers.


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_5_X@20035 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Enrico Forestieri 2007-09-04 13:34:50 +00:00
parent 0b8a9ce8eb
commit 2fef8a94bd
2 changed files with 19 additions and 4 deletions

View File

@ -234,7 +234,7 @@ AC_LANG_POP(C)
# some standard header files
AC_HEADER_DIRENT
AC_HEADER_MAJOR
AC_CHECK_HEADERS(sys/time.h sys/types.h sys/select.h strings.h locale.h utime.h sys/utime.h io.h process.h NewAPIs.h)
AC_CHECK_HEADERS(sys/time.h sys/types.h sys/select.h strings.h locale.h utime.h sys/utime.h io.h process.h NewAPIs.h fontconfig/fontconfig.h)
# some standard structures
AC_HEADER_STAT

View File

@ -13,14 +13,19 @@
#include <config.h>
#include "support/os.h"
#include "debug.h"
#ifdef __APPLE__
#include "debug.h"
#include <Carbon/Carbon.h>
#include <ApplicationServices/ApplicationServices.h>
using std::endl;
#elif defined(HAVE_FONTCONFIG_FONTCONFIG_H)
#include "support/filetools.h"
#include "support/Package.h"
#include <fontconfig/fontconfig.h>
using lyx::support::addPath;
#endif
using std::endl;
using std::string;
@ -224,12 +229,22 @@ void addFontResources()
kFMLocalActivationContext);
if (err)
lyxerr << "FMActivateFonts err = " << err << endl;
#elif defined(HAVE_FONTCONFIG_FONTCONFIG_H)
// Register BaKoMa truetype fonts with fontconfig
string const fonts_dir =
addPath(package().system_support().absFilename(), "fonts");
if (!FcConfigAppFontAddDir(0, (FcChar8 const *)fonts_dir.c_str()))
lyxerr << "Unable to register fonts with fontconfig." << endl;
#endif
}
void restoreFontResources()
{}
{
#if defined(HAVE_FONTCONFIG_FONTCONFIG_H) && !defined(__APPLE__)
FcConfigAppFontClear(0);
#endif
}
} // namespace os
} // namespace support