diff options
| author | Mavridis Philippe <mavridisf@gmail.com> | 2021-03-30 14:06:51 +0300 |
|---|---|---|
| committer | Mavridis Philippe <mavridisf@gmail.com> | 2021-03-30 14:06:51 +0300 |
| commit | 1bd3c5b42f1570b2100a4986f638f2723ee37ec4 (patch) | |
| tree | a34cdf5c32425604ddc873ace7c54385a9b59be2 /admin/detect-autoconf.sh | |
| parent | 74b22318b8df6c1e9355b73a16bb755a5178b8d6 (diff) | |
| download | kompose-1bd3c5b42f1570b2100a4986f638f2723ee37ec4.tar.gz kompose-1bd3c5b42f1570b2100a4986f638f2723ee37ec4.zip | |
Replaced 'admin' directory with TDE submodule.
Signed-off-by: Mavridis Philippe <mavridisf@gmail.com>
Diffstat (limited to 'admin/detect-autoconf.sh')
| -rw-r--r-- | admin/detect-autoconf.sh | 59 |
1 files changed, 0 insertions, 59 deletions
diff --git a/admin/detect-autoconf.sh b/admin/detect-autoconf.sh deleted file mode 100644 index 94f91e9..0000000 --- a/admin/detect-autoconf.sh +++ /dev/null @@ -1,59 +0,0 @@ -#! /bin/sh - -# Global variables... -AUTOCONF="autoconf" -AUTOHEADER="autoheader" -AUTOM4TE="autom4te" -AUTOMAKE="automake" -ACLOCAL="aclocal" - -# Please add higher versions first. The last version number is the minimum -# needed to compile KDE. Do not forget to include the name/version # -# separator if one is present, e.g. -1.2 where - is the separator. -KDE_AUTOCONF_VERS="-2.58 -2.57 257 -2.54 -2.53a -2.53 -2.52 -2.5x" -KDE_AUTOMAKE_VERS="-1.7 17 -1.6" - -# We don't use variable here for remembering the type ... strings. Local -# variables are not that portable, but we fear namespace issues with our -# includer. -checkAutoconf() -{ - for kde_autoconf_version in $KDE_AUTOCONF_VERS; do - if test -x "`$WHICH $AUTOCONF$kde_autoconf_version 2>/dev/null`"; then - AUTOCONF="`$WHICH $AUTOCONF$kde_autoconf_version`" - AUTOHEADER="`$WHICH $AUTOHEADER$kde_autoconf_version`" - AUTOM4TE="`$WHICH $AUTOM4TE$kde_autoconf_version`" - break - fi - done -} - -checkAutomake () -{ - for kde_automake_version in $KDE_AUTOMAKE_VERS; do - if test -x "`$WHICH $AUTOMAKE$kde_automake_version 2>/dev/null`"; then - AUTOMAKE="`$WHICH $AUTOMAKE$kde_automake_version`" - ACLOCAL="`$WHICH $ACLOCAL$kde_automake_version`" - break - fi - done - - if test "$UNSERMAKE" != no && test -x "`$WHICH unsermake 2>/dev/null`"; then - AUTOMAKE="`$WHICH unsermake` -c" - fi -} - -checkWhich () -{ - WHICH="" - for i in "type -p" "which" "type" ; do - T=`$i sh 2> /dev/null` - test -x "$T" && WHICH="$i" && break - done -} - -checkWhich -checkAutoconf -checkAutomake - -export WHICH AUTOHEADER AUTOCONF AUTOM4TE AUTOMAKE ACLOCAL |
