diff --git a/NEWS b/NEWS index 96b2b5e..3fb05a4 100644 --- a/NEWS +++ b/NEWS @@ -57,6 +57,12 @@ CHANGES WITH 7: still not considered stable so don't package them separately! Feel free to link them statically. + * An experimental unfinished version of the UVT library has been added. + Use it only for testing purposes. The next kmscon release will include + documentation and more. + UVT implements virtual terminals in user-space. It will soon replace + the cdev-sessions in kmscon. + * Lots of bug-fixes! CHANGES WITH 6: diff --git a/README b/README index 7fbe1fa..1b36cd6 100644 --- a/README +++ b/README @@ -33,7 +33,7 @@ console. See kmscon(1) man-page for usage information. == Install == To compile the kmscon binary, run the standard autotools commands: - $ ./autogen.sh (you need this only when building from git directly) + $ test -f ./configure || NOCONFIGURE=1 ./autogen.sh $ ./configure $ make $ make install @@ -89,6 +89,7 @@ console. See kmscon(1) man-page for usage information. --enable-eloop: Build eloop event loop library [default: off] --enable-tsm: Build TSM terminal state-machine library [default: off] --enable-uterm: Build uterm library [default: off] + --enable-uvt: Build UVT library [default: off] == Running == diff --git a/configure.ac b/configure.ac index bcbe234..96f7c5f 100644 --- a/configure.ac +++ b/configure.ac @@ -5,7 +5,7 @@ AC_PREREQ(2.68) -AC_INIT([kmscon], [6]) +AC_INIT([kmscon], [7]) AC_SUBST(PACKAGE_URL, [https://github.com/dvdhrm/kmscon]) AC_CONFIG_SRCDIR([src/kmscon_main.c]) AC_CONFIG_AUX_DIR([build-aux])