Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
qemu
提交
e2134eb9
Q
qemu
项目概览
openeuler
/
qemu
通知
10
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
Q
qemu
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
e2134eb9
编写于
9月 25, 2012
作者:
G
Gerd Hoffmann
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
pixman: windup in configure & makefiles
Signed-off-by:
N
Gerd Hoffmann
<
kraxel@redhat.com
>
上级
9f2c7d7d
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
47 addition
and
0 deletion
+47
-0
Makefile
Makefile
+9
-0
configure
configure
+38
-0
未找到文件。
Makefile
浏览文件 @
e2134eb9
...
@@ -118,6 +118,15 @@ endif
...
@@ -118,6 +118,15 @@ endif
subdir-libcacard
:
$(oslib-obj-y) $(trace-obj-y) qemu-timer-common.o
subdir-libcacard
:
$(oslib-obj-y) $(trace-obj-y) qemu-timer-common.o
subdir-pixman
:
pixman/Makefile
$(
call
quiet-command,
$(MAKE)
$(SUBDIR_MAKEFLAGS)
-C
pixman
V
=
"
$(V)
"
all,
)
pixman/Makefile
:
$(SRC_PATH)/pixman/configure
(
cd
pixman
;
$(SRC_PATH)
/pixman/configure
--disable-shared
--enable-static
)
$(SRC_PATH)/pixman/configure
:
(
cd
$(SRC_PATH)
/pixman
;
autoreconf
-v
--install
)
$(filter %-softmmu,$(SUBDIR_RULES))
:
$(universal-obj-y) $(trace-obj-y) $(common-obj-y) $(extra-obj-y) subdir-libdis
$(filter %-softmmu,$(SUBDIR_RULES))
:
$(universal-obj-y) $(trace-obj-y) $(common-obj-y) $(extra-obj-y) subdir-libdis
$(filter %-user,$(SUBDIR_RULES))
:
$(universal-obj-y) $(trace-obj-y) subdir-libdis-user subdir-libuser
$(filter %-user,$(SUBDIR_RULES))
:
$(universal-obj-y) $(trace-obj-y) subdir-libdis-user subdir-libuser
...
...
configure
浏览文件 @
e2134eb9
...
@@ -147,6 +147,7 @@ curses=""
...
@@ -147,6 +147,7 @@ curses=""
docs
=
""
docs
=
""
fdt
=
""
fdt
=
""
nptl
=
""
nptl
=
""
pixman
=
""
sdl
=
""
sdl
=
""
virtfs
=
""
virtfs
=
""
vnc
=
"yes"
vnc
=
"yes"
...
@@ -642,6 +643,10 @@ for opt do
...
@@ -642,6 +643,10 @@ for opt do
# configure to be used by RPM and similar macros that set
# configure to be used by RPM and similar macros that set
# lots of directory switches by default.
# lots of directory switches by default.
;;
;;
--with-system-pixman
)
pixman
=
"system"
;;
--without-system-pixman
)
pixman
=
"internal"
;;
--disable-sdl
)
sdl
=
"no"
--disable-sdl
)
sdl
=
"no"
;;
;;
--enable-sdl
)
sdl
=
"yes"
--enable-sdl
)
sdl
=
"yes"
...
@@ -2094,6 +2099,34 @@ else
...
@@ -2094,6 +2099,34 @@ else
exit
1
exit
1
fi
fi
##########################################
# pixman support probe
if
test
"
$pixman
"
=
""
;
then
if
$pkg_config
pixman-1
>
/dev/null 2>&1
;
then
pixman
=
"system"
else
pixman
=
"internal"
fi
fi
if
test
"
$pixman
"
=
"system"
;
then
pixman_cflags
=
`
$pkg_config
--cflags
pixman-1 2>/dev/null
`
pixman_libs
=
`
$pkg_config
--libs
pixman-1 2>/dev/null
`
else
if
test
!
-d
${
source_path
}
/pixman/pixman
;
then
echo
"ERROR: pixman not present. Your options:"
echo
" (1) Prefered: Install the pixman devel package (any recent"
echo
" distro should have packages as Xorg needs pixman too)."
echo
" (2) Fetch the pixman submodule, using:"
echo
" git submodule update --init pixman"
exit
1
fi
pixman_cflags
=
"-I
${
source_path
}
/pixman/pixman"
pixman_libs
=
"-Lpixman/pixman/.libs -lpixman-1"
fi
QEMU_CFLAGS
=
"
$QEMU_CFLAGS
$pixman_cflags
"
libs_softmmu
=
"
$libs_softmmu
$pixman_libs
"
##########################################
##########################################
# libcap probe
# libcap probe
...
@@ -3142,6 +3175,7 @@ echo "-Werror enabled $werror"
...
@@ -3142,6 +3175,7 @@ echo "-Werror enabled $werror"
if
test
"
$darwin
"
=
"yes"
;
then
if
test
"
$darwin
"
=
"yes"
;
then
echo
"Cocoa support
$cocoa
"
echo
"Cocoa support
$cocoa
"
fi
fi
echo
"pixman
$pixman
"
echo
"SDL support
$sdl
"
echo
"SDL support
$sdl
"
echo
"curses support
$curses
"
echo
"curses support
$curses
"
echo
"curl support
$curl
"
echo
"curl support
$curl
"
...
@@ -3908,6 +3942,9 @@ if test "$target_softmmu" = "yes" ; then
...
@@ -3908,6 +3942,9 @@ if test "$target_softmmu" = "yes" ; then
if
test
"
$smartcard_nss
"
=
"yes"
;
then
if
test
"
$smartcard_nss
"
=
"yes"
;
then
echo
"subdir-
$target
: subdir-libcacard"
>>
$config_host_mak
echo
"subdir-
$target
: subdir-libcacard"
>>
$config_host_mak
fi
fi
if
test
"
$pixman
"
=
"internal"
;
then
echo
"subdir-
$target
: subdir-pixman"
>>
$config_host_mak
fi
case
"
$target_arch2
"
in
case
"
$target_arch2
"
in
i386|x86_64
)
i386|x86_64
)
echo
"CONFIG_HAVE_CORE_DUMP=y"
>>
$config_target_mak
echo
"CONFIG_HAVE_CORE_DUMP=y"
>>
$config_target_mak
...
@@ -4111,6 +4148,7 @@ DIRS="$DIRS pc-bios/optionrom pc-bios/spapr-rtas"
...
@@ -4111,6 +4148,7 @@ DIRS="$DIRS pc-bios/optionrom pc-bios/spapr-rtas"
DIRS
=
"
$DIRS
roms/seabios roms/vgabios"
DIRS
=
"
$DIRS
roms/seabios roms/vgabios"
DIRS
=
"
$DIRS
qapi-generated"
DIRS
=
"
$DIRS
qapi-generated"
DIRS
=
"
$DIRS
libcacard libcacard/libcacard libcacard/trace"
DIRS
=
"
$DIRS
libcacard libcacard/libcacard libcacard/trace"
DIRS
=
"
$DIRS
pixman"
FILES
=
"Makefile tests/tcg/Makefile qdict-test-data.txt"
FILES
=
"Makefile tests/tcg/Makefile qdict-test-data.txt"
FILES
=
"
$FILES
tests/tcg/cris/Makefile tests/tcg/cris/.gdbinit"
FILES
=
"
$FILES
tests/tcg/cris/Makefile tests/tcg/cris/.gdbinit"
FILES
=
"
$FILES
tests/tcg/lm32/Makefile libcacard/Makefile"
FILES
=
"
$FILES
tests/tcg/lm32/Makefile libcacard/Makefile"
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录