summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorOlivier Fourdan <fourdan@xfce.org>2009-09-04 16:02:36 +0200
committerOlivier Fourdan <fourdan@xfce.org>2009-09-04 16:02:36 +0200
commitd39d9c6a4fe8e19ee2117eaaa59c3031be91f5ce (patch)
tree53ddf0867796881969944e884f0606aa3a589ad5 /autogen.sh
parent9dc8058cc72e83c2f788c46afa1f64e645e11cfa (diff)
downloadxfwm4-d39d9c6a4fe8e19ee2117eaaa59c3031be91f5ce.tar.gz
Use Jannis' autogen.sh script from Thunar
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh46
1 files changed, 16 insertions, 30 deletions
diff --git a/autogen.sh b/autogen.sh
index 8f35549b1..c1ce7d7ea 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -1,17 +1,23 @@
#!/bin/sh
#
-# $Id$
+# vi:set et ai sw=2 sts=2 ts=2: */
+#-
+# Copyright (c) 2009 Jannis Pohlmann <jannis@xfce.org>
#
-# Copyright (c) 2002-2005
-# The Xfce development team. All rights reserved.
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License as
+# published by the Free Software Foundation; either version 2 of
+# the License, or (at your option) any later version.
#
-# Written for Xfce by Benedikt Meurer <benny@xfce.org>.
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
#
-
-# Set locale to C to avoid troubles with "svn info" output parsing
-LC_ALL=C
-LANG=C
-export LC_ALL LANG
+# You should have received a copy of the GNU General Public
+# License along with this program; if not, write to the Free
+# Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+# Boston, MA 02110-1301, USA.
(type xdt-autogen) >/dev/null 2>&1 || {
cat >&2 <<EOF
@@ -23,24 +29,4 @@ EOF
exit 1
}
-# verify that po/LINGUAS is present
-(test -f po/LINGUAS) >/dev/null 2>&1 || {
- cat >&2 <<EOF
-autogen.sh: The file po/LINGUAS could not be found. Please check your snapshot
- or try to checkout again.
-EOF
- exit 1
-}
-
-echo "Creating configure.ac"
-
-# substitute revision and linguas
-linguas=`sed -e '/^#/d' po/LINGUAS`
-revision=`git rev-parse --short HEAD`
-sed -e "s/@LINGUAS@/${linguas}/g" \
- -e "s/@REVISION@/${revision}/g" \
- < "configure.ac.in" > "configure.ac"
-
-exec xdt-autogen $@
-
-# vi:set ts=2 sw=2 et ai:
+XDT_AUTOGEN_REQUIRED_VERSION="4.7.0" exec xdt-autogen $@