Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
0ef63e16
Commit
0ef63e16
authored
Mar 27, 2010
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
makefiles: Don't create font symlinks when fonts are disabled.
parent
718ea42f
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
17 additions
and
7 deletions
+17
-7
aclocal.m4
aclocal.m4
+5
-3
configure
configure
+8
-0
configure.ac
configure.ac
+4
-4
No files found.
aclocal.m4
View file @
0ef63e16
...
...
@@ -407,11 +407,13 @@ AC_DEFUN([WINE_CONFIG_EXTRA_DIR],
dnl **** Create symlinks from config.status ****
dnl
dnl Usage: WINE_CONFIG_SYMLINK(name,target)
dnl Usage: WINE_CONFIG_SYMLINK(name,target
,enable
)
dnl
AC_DEFUN([WINE_CONFIG_SYMLINK],[AC_REQUIRE([WINE_CONFIG_HELPERS])dnl
AC_CONFIG_LINKS([$1:]m4_default([$2],[$1]))dnl
m4_if([$2],,[test "$srcdir" = "." || ])wine_fn_config_symlink $1])
m4_ifval([$3],[if test "x$[$3]" != xno; then
])AC_CONFIG_LINKS([$1:]m4_default([$2],[$1]))dnl
m4_if([$2],,[test "$srcdir" = "." || ])wine_fn_config_symlink $1[]m4_ifval([$3],[
fi])])
dnl **** Create a make rules file from config.status ****
dnl
...
...
configure
View file @
0ef63e16
...
...
@@ -14107,14 +14107,22 @@ distclean::
}
ac_config_links
=
"
$ac_config_links
dlls/wineps.drv/generic.ppd:dlls/wineps.drv/generic.ppd"
test
"
$srcdir
"
=
"."
||
wine_fn_config_symlink dlls/wineps.drv/generic.ppd
if
test
"x
$enable_fonts
"
!=
xno
;
then
ac_config_links
=
"
$ac_config_links
fonts/marlett.ttf:fonts/marlett.ttf"
test
"
$srcdir
"
=
"."
||
wine_fn_config_symlink fonts/marlett.ttf
fi
if
test
"x
$enable_fonts
"
!=
xno
;
then
ac_config_links
=
"
$ac_config_links
fonts/symbol.ttf:fonts/symbol.ttf"
test
"
$srcdir
"
=
"."
||
wine_fn_config_symlink fonts/symbol.ttf
fi
if
test
"x
$enable_fonts
"
!=
xno
;
then
ac_config_links
=
"
$ac_config_links
fonts/tahoma.ttf:fonts/tahoma.ttf"
test
"
$srcdir
"
=
"."
||
wine_fn_config_symlink fonts/tahoma.ttf
fi
if
test
"x
$enable_fonts
"
!=
xno
;
then
ac_config_links
=
"
$ac_config_links
fonts/tahomabd.ttf:fonts/tahomabd.ttf"
test
"
$srcdir
"
=
"."
||
wine_fn_config_symlink fonts/tahomabd.ttf
fi
ac_config_links
=
"
$ac_config_links
wine:tools/winewrapper"
wine_fn_config_symlink wine
...
...
configure.ac
View file @
0ef63e16
...
...
@@ -2134,10 +2134,10 @@ AH_TOP([#define __WINE_CONFIG_H])
AC_CONFIG_COMMANDS([include/stamp-h], [echo timestamp > include/stamp-h])
WINE_CONFIG_SYMLINK(dlls/wineps.drv/generic.ppd)
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(fonts/marlett.ttf
,,enable_fonts
)
WINE_CONFIG_SYMLINK(fonts/symbol.ttf
,,enable_fonts
)
WINE_CONFIG_SYMLINK(fonts/tahoma.ttf
,,enable_fonts
)
WINE_CONFIG_SYMLINK(fonts/tahomabd.ttf
,,enable_fonts
)
WINE_CONFIG_SYMLINK(wine,tools/winewrapper)
WINE_CONFIG_EXTRA_DIR(dlls/gdi32/enhmfdrv)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment