From 0062af6701e577cc75021102a76b25c48717647e Mon Sep 17 00:00:00 2001 From: thomasadam Date: Sun, 5 Sep 2010 10:59:44 +0000 Subject: [PATCH] Add in configure_dev.sh from FVWM sources This allows us to generate a configure script more easily. --- ChangeLog | 7 +++++++ README | 12 ++++++++++++ contrib/configure_dev.sh | 10 ++++++++++ 3 files changed, 29 insertions(+) create mode 100755 contrib/configure_dev.sh diff --git a/ChangeLog b/ChangeLog index 851235f..65bf2e6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2010-08-05 Thomas Adam + * README: + * contrib/configure_dev.sh: + Add in a means of generating a configure script from the CVS sources. + Explain how to use it in the README file as well. This script is the + same as the one found in the FVWM sources. + 2008-03-25 Thomas Adam * themes/afterstep/background: diff --git a/README b/README index 7069781..e09a664 100644 --- a/README +++ b/README @@ -12,6 +12,18 @@ or project's development page (where you may download the package): This release should work out of the box and is stable enough. The development continues. +How To Install (CVS) +-------------------- + +To use the CVS version of fvwm-themes, you will need autotools installed, as +well as X11 header files. The script: + +contrib/configure_dev.sh + +in the CVS sources will run the autotool commands to generate the necessary +configure script. See the section on "How to Install" in this document on +how to install fvwm-themes in the usual way. + How To Install -------------- diff --git a/contrib/configure_dev.sh b/contrib/configure_dev.sh new file mode 100755 index 0000000..9e09c98 --- /dev/null +++ b/contrib/configure_dev.sh @@ -0,0 +1,10 @@ +#!/bin/sh + +# reconfigure CVS source code +# must be called from main fvwm directory +set -x +aclocal || exit 1 +autoheader || exit 2 +automake --add-missing || exit 3 +autoreconf || exit 4 +./configure ${1+"$@"} || exit 5 -- 2.11.4.GIT