mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-22 05:35:25 +00:00
* configure.in src/Makefile.am: more warnings from compiler and
link static in work environement Daniel
This commit is contained in:
parent
b325d741d3
commit
37ecc62443
@ -1,3 +1,8 @@
|
||||
Fri Dec 2 13:10:04 CET 2005 Daniel Veillard <veillard@redhat.com>
|
||||
|
||||
* configure.in src/Makefile.am: more warnings from compiler and
|
||||
link static in work environement
|
||||
|
||||
Thu Dec 1 18:32:43 CET 2005 Daniel Veillard <veillard@redhat.com>
|
||||
|
||||
* Makefile.am configure.in docs/apibuild.py docs/libxen-api.xml
|
||||
|
13
configure.in
13
configure.in
@ -47,6 +47,19 @@ test "x$U" != "x" && AC_MSG_ERROR(Compiler not ANSI compliant)
|
||||
|
||||
AM_PROG_LIBTOOL
|
||||
|
||||
dnl
|
||||
dnl specific tests to setup DV devel environments with debug etc ...
|
||||
dnl
|
||||
if [[ "${LOGNAME}" = "veillard" -a "`pwd`" = "/u/veillard/libxen" ]] ; then
|
||||
if test "${GCC}" = "yes" ; then
|
||||
CFLAGS="-g -O -pedantic -W -Wformat -Wunused -Wimplicit -Wreturn-type -Wswitch -Wcomment -Wtrigraphs -Wformat -Wchar-subscripts -Wuninitialized -Wparentheses -Wshadow -Wpointer-arith -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Winline -Wredundant-decls -Wall"
|
||||
fi
|
||||
STATIC_BINARIES="-static"
|
||||
else
|
||||
STATIC_BINARIES=
|
||||
fi
|
||||
AC_SUBST(STATIC_BINARIES)
|
||||
|
||||
dnl search for the low level Xen library
|
||||
AC_SEARCH_LIBS(xc_domain_create, [xenctrl], [], [AC_MSG_ERROR([Xen control library not found])])
|
||||
AC_SEARCH_LIBS(xs_read, [xenstore], [], [AC_MSG_ERROR([Xen store library not found])])
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
INCLUDES = -I$(top_builddir)/include -I@srcdir@/include
|
||||
DEPS = libxen.la
|
||||
LDADDS = libxen.la
|
||||
LDADDS = @STATIC_BINARIES@ libxen.la
|
||||
|
||||
EXTRA_DIST = libxen_sym.version
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user