Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
libvirt
提交
de48dae9
L
libvirt
项目概览
openeuler
/
libvirt
通知
3
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
L
libvirt
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
de48dae9
编写于
2月 14, 2007
作者:
D
Daniel Veillard
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
* libvirt.spec.in: spec cleanup and missing BuildRequires
* qemud/Makefile.am: avoid -Werror daniel
上级
2edf5312
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
13 addition
and
3 deletion
+13
-3
ChangeLog
ChangeLog
+5
-0
libvirt.spec.in
libvirt.spec.in
+7
-2
qemud/Makefile.am
qemud/Makefile.am
+1
-1
未找到文件。
ChangeLog
浏览文件 @
de48dae9
Wed Feb 14 19:53:33 CET 2007 Daniel Veillard <veillard@redhat.com>
* libvirt.spec.in: spec cleanup and missing BuildRequires
* qemud/Makefile.am: avoid -Werror
Wed Feb 14 19:06:26 CET 2007 Daniel Veillard <veillard@redhat.com>
Wed Feb 14 19:06:26 CET 2007 Daniel Veillard <veillard@redhat.com>
* configure.in NEWS include/libvirt/libvirt.h docs/* docs/apibuild.py:
* configure.in NEWS include/libvirt/libvirt.h docs/* docs/apibuild.py:
...
...
libvirt.spec.in
浏览文件 @
de48dae9
...
@@ -3,7 +3,7 @@
...
@@ -3,7 +3,7 @@
Summary: Library providing an API to use the Xen virtualization
Summary: Library providing an API to use the Xen virtualization
Name: libvirt
Name: libvirt
Version: @VERSION@
Version: @VERSION@
Release: 1
Release: 1
%{?dist}
License: LGPL
License: LGPL
Group: Development/Libraries
Group: Development/Libraries
Source: libvirt-%{version}.tar.gz
Source: libvirt-%{version}.tar.gz
...
@@ -20,6 +20,7 @@ BuildRequires: readline-devel
...
@@ -20,6 +20,7 @@ BuildRequires: readline-devel
BuildRequires: ncurses-devel
BuildRequires: ncurses-devel
BuildRequires: gettext
BuildRequires: gettext
BuildRequires: libsysfs-devel
BuildRequires: libsysfs-devel
BuildRequires: gnutls-devel
Obsoletes: libvir
Obsoletes: libvir
ExclusiveArch: i386 x86_64 ia64
ExclusiveArch: i386 x86_64 ia64
...
@@ -43,7 +44,6 @@ Summary: Python bindings for the libvirt library
...
@@ -43,7 +44,6 @@ Summary: Python bindings for the libvirt library
Group: Development/Libraries
Group: Development/Libraries
Requires: libvirt = %{version}
Requires: libvirt = %{version}
Obsoletes: libvir-python
Obsoletes: libvir-python
Requires: %{_libdir}/python%(echo `python -c "import sys; print sys.version[0:3]"`)
%description python
%description python
The libvirt-python package contains a module that permits applications
The libvirt-python package contains a module that permits applications
...
@@ -119,6 +119,11 @@ rm -fr %{buildroot}
...
@@ -119,6 +119,11 @@ rm -fr %{buildroot}
%doc docs/examples/python
%doc docs/examples/python
%changelog
%changelog
* Wed Feb 14 2007 Daniel Veillard <veillard@redhat.com> 0.2.0-1
- support for KVM and QEmu
- support for network configuration
- assorted fixes
* Wed Dec 20 2006 Daniel Veillard <veillard@redhat.com> 0.1.11-1
* Wed Dec 20 2006 Daniel Veillard <veillard@redhat.com> 0.1.11-1
- finish inactive Xen domains support
- finish inactive Xen domains support
- memory leak fix
- memory leak fix
...
...
qemud/Makefile.am
浏览文件 @
de48dae9
...
@@ -13,7 +13,7 @@ libvirt_qemud_SOURCES = qemud.c internal.h protocol.h \
...
@@ -13,7 +13,7 @@ libvirt_qemud_SOURCES = qemud.c internal.h protocol.h \
#-D_XOPEN_SOURCE=600 -D_XOPEN_SOURCE_EXTENDED=1 -D_POSIX_C_SOURCE=199506L
#-D_XOPEN_SOURCE=600 -D_XOPEN_SOURCE_EXTENDED=1 -D_POSIX_C_SOURCE=199506L
libvirt_qemud_CFLAGS
=
\
libvirt_qemud_CFLAGS
=
\
-I
$(top_srcdir)
/include
-I
$(top_builddir)
/include
$(LIBXML_CFLAGS)
\
-I
$(top_srcdir)
/include
-I
$(top_builddir)
/include
$(LIBXML_CFLAGS)
\
-W
error
-W
all
-Wextra
-DLOCAL_STATE_DIR
=
"
\"
$(localstatedir)
\"
"
\
-Wall
-Wextra
-DLOCAL_STATE_DIR
=
"
\"
$(localstatedir)
\"
"
\
-DSYSCONF_DIR
=
"
\"
$(sysconfdir)
\"
"
-DSYSCONF_DIR
=
"
\"
$(sysconfdir)
\"
"
libvirt_qemud_LDFLAGS
=
$(LIBXML_LIBS)
$(SYSFS_LIBS)
libvirt_qemud_LDFLAGS
=
$(LIBXML_LIBS)
$(SYSFS_LIBS)
libvirt_qemud_DEPENDENCIES
=
libvirt_qemud_DEPENDENCIES
=
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录