Added check for hal-lock program, and note about requirement for hal-lock in README
svn path=/trunk/; revision=848
This commit is contained in:
parent
7bf6c422ff
commit
913a42d268
|
@ -1,5 +1,9 @@
|
||||||
2008-05-08 Curtis Gedak <gedakc@gmail.com>
|
2008-05-08 Curtis Gedak <gedakc@gmail.com>
|
||||||
|
|
||||||
|
* README: Added note about hal-lock and HAL requirement
|
||||||
|
|
||||||
|
* configure.in: Added check for hal-lock program
|
||||||
|
|
||||||
* src/GParted_Core.cc: Added parse devices from /proc/partitions
|
* src/GParted_Core.cc: Added parse devices from /proc/partitions
|
||||||
- If /proc/partitions doesn't exist then use ped_device_probe_all
|
- If /proc/partitions doesn't exist then use ped_device_probe_all
|
||||||
- Closes GParted bugs #351753, and #453555
|
- Closes GParted bugs #351753, and #453555
|
||||||
|
|
6
README
6
README
|
@ -105,3 +105,9 @@ Optional packages include:
|
||||||
xfsprogs
|
xfsprogs
|
||||||
NOTE: If the vol_id command is in the search PATH, it will be
|
NOTE: If the vol_id command is in the search PATH, it will be
|
||||||
used to read linux-swap volume labels.
|
used to read linux-swap volume labels.
|
||||||
|
|
||||||
|
The hal-lock program is required by the gparted script to acquire device
|
||||||
|
locks prior to gpartedbin invocation. hal-lock is part of the Hardware
|
||||||
|
Abstraction Layer. You can learn more about HAL at:
|
||||||
|
|
||||||
|
http://people.freedesktop.org/~david/hal-spec/hal-spec.html
|
||||||
|
|
12
configure.in
12
configure.in
|
@ -14,6 +14,13 @@ AC_PROG_CC
|
||||||
AC_PROG_CXX
|
AC_PROG_CXX
|
||||||
AM_PROG_LIBTOOL
|
AM_PROG_LIBTOOL
|
||||||
|
|
||||||
|
dnl check for hal-lock program
|
||||||
|
AC_CHECK_PROG([HAVE_HAL_LOCK], [hal-lock], [yes], [no])
|
||||||
|
if test "x$HAVE_HAL_LOCK" = "xno"; then
|
||||||
|
AC_MSG_ERROR([*** hal-lock program not found])
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
dnl======================
|
dnl======================
|
||||||
dnl i18n stuff
|
dnl i18n stuff
|
||||||
dnl======================
|
dnl======================
|
||||||
|
@ -28,8 +35,9 @@ IT_PROG_INTLTOOL([0.35.5])
|
||||||
dnl======================
|
dnl======================
|
||||||
dnl checks for libs
|
dnl checks for libs
|
||||||
dnl======================
|
dnl======================
|
||||||
AC_CHECK_LIB(uuid, uuid_generate, [], AC_MSG_ERROR([*** uuid library (libuuid) not found]))
|
AC_CHECK_LIB(uuid, uuid_generate, [], AC_MSG_ERROR([*** uuid library (libuuid) not found]))
|
||||||
AC_CHECK_LIB(dl, dlopen, [], AC_MSG_ERROR([*** dl library (libdl) not found]))
|
AC_CHECK_LIB(dl, dlopen, [], AC_MSG_ERROR([*** dl library (libdl) not found]))
|
||||||
|
|
||||||
|
|
||||||
dnl libparted
|
dnl libparted
|
||||||
LIBPARTED_VERSION=1.7.1
|
LIBPARTED_VERSION=1.7.1
|
||||||
|
|
Loading…
Reference in New Issue