Module: wine Branch: master Commit: ce12296ce1544e665194488577b7e52a1df01006 URL: http://source.winehq.org/git/wine.git/?a=commit;h=ce12296ce1544e665194488577...
Author: Alexandre Julliard julliard@winehq.org Date: Wed Feb 3 13:13:16 2010 +0100
makefiles: Create the fonts symlinks from configure.
---
configure | 16 ++++++++++++++++ configure.ac | 4 ++++ 2 files changed, 20 insertions(+), 0 deletions(-)
diff --git a/configure b/configure index 5aac1cf..25ea483 100755 --- a/configure +++ b/configure @@ -13685,6 +13685,18 @@ ALL_PROGRAM_BIN_INSTALL_DIRS="" ac_config_commands="$ac_config_commands include/stamp-h"
+ac_config_links="$ac_config_links fonts/marlett.ttf:fonts/marlett.ttf" +ALL_SYMLINKS="$ALL_SYMLINKS \ + fonts/marlett.ttf" +ac_config_links="$ac_config_links fonts/symbol.ttf:fonts/symbol.ttf" +ALL_SYMLINKS="$ALL_SYMLINKS \ + fonts/symbol.ttf" +ac_config_links="$ac_config_links fonts/tahoma.ttf:fonts/tahoma.ttf" +ALL_SYMLINKS="$ALL_SYMLINKS \ + fonts/tahoma.ttf" +ac_config_links="$ac_config_links fonts/tahomabd.ttf:fonts/tahomabd.ttf" +ALL_SYMLINKS="$ALL_SYMLINKS \ + fonts/tahomabd.ttf" ac_config_links="$ac_config_links wine:tools/winewrapper" ALL_SYMLINKS="$ALL_SYMLINKS \ wine" @@ -19607,6 +19619,10 @@ do case $ac_config_target in "include/config.h") CONFIG_HEADERS="$CONFIG_HEADERS include/config.h" ;; "include/stamp-h") CONFIG_COMMANDS="$CONFIG_COMMANDS include/stamp-h" ;; + "fonts/marlett.ttf") CONFIG_LINKS="$CONFIG_LINKS fonts/marlett.ttf:fonts/marlett.ttf" ;; + "fonts/symbol.ttf") CONFIG_LINKS="$CONFIG_LINKS fonts/symbol.ttf:fonts/symbol.ttf" ;; + "fonts/tahoma.ttf") CONFIG_LINKS="$CONFIG_LINKS fonts/tahoma.ttf:fonts/tahoma.ttf" ;; + "fonts/tahomabd.ttf") CONFIG_LINKS="$CONFIG_LINKS fonts/tahomabd.ttf:fonts/tahomabd.ttf" ;; "wine") CONFIG_LINKS="$CONFIG_LINKS wine:tools/winewrapper" ;; "dlls/gdi32/enhmfdrv") CONFIG_COMMANDS="$CONFIG_COMMANDS dlls/gdi32/enhmfdrv" ;; "dlls/gdi32/mfdrv") CONFIG_COMMANDS="$CONFIG_COMMANDS dlls/gdi32/mfdrv" ;; diff --git a/configure.ac b/configure.ac index 733c028..f6c4d34 100644 --- a/configure.ac +++ b/configure.ac @@ -2114,6 +2114,10 @@ AH_TOP([#define __WINE_CONFIG_H])
AC_CONFIG_COMMANDS([include/stamp-h], [echo timestamp > include/stamp-h])
+WINE_CONFIG_SYMLINK(fonts/marlett.ttf) +WINE_CONFIG_SYMLINK(fonts/symbol.ttf) +WINE_CONFIG_SYMLINK(fonts/tahoma.ttf) +WINE_CONFIG_SYMLINK(fonts/tahomabd.ttf) WINE_CONFIG_SYMLINK(wine,tools/winewrapper)
WINE_CONFIG_EXTRA_DIR(dlls/gdi32/enhmfdrv)