diff options
author | Remko Tronçon <git@el-tramo.be> | 2009-08-14 09:05:49 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2009-08-16 22:13:27 (GMT) |
commit | 516b334bd963452578367b2cd354db6c39ba99c9 (patch) | |
tree | f24aa85a28be562ea64929fe298a9851c1a74965 /autoconf/ax_qt.m4 | |
parent | 7fdc3e80028fd93fcc0111570a01cd78282cd41a (diff) | |
download | swift-contrib-516b334bd963452578367b2cd354db6c39ba99c9.zip swift-contrib-516b334bd963452578367b2cd354db6c39ba99c9.tar.bz2 |
Remove autoconf/make files.
Diffstat (limited to 'autoconf/ax_qt.m4')
-rw-r--r-- | autoconf/ax_qt.m4 | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/autoconf/ax_qt.m4 b/autoconf/ax_qt.m4 deleted file mode 100644 index 6b55c13..0000000 --- a/autoconf/ax_qt.m4 +++ /dev/null @@ -1,27 +0,0 @@ -# Author: Remko Tronçon - -AC_DEFUN([AX_QT], -[ - AC_ARG_WITH( - [qt], - AC_HELP_STRING([--with-qt=@<:@ARG@:>@],[Path to Qt installation]), - [ - WITH_QT="$withval" - if test "$withval" != "no" -a "$withval" != "yes"; then - QT_PATH="$withval/bin" - else - QT_PATH="$PATH" - fi - ], - [ - WITH_QT="yes" - QT_PATH="$PATH" - ]) - - if test "$WITH_QT" != "no"; then - AC_PATH_PROG(QMAKE, qmake, [], $QT_PATH) - if test "$QMAKE"; then - HAVE_QT=yes - fi - fi -]) |