summaryrefslogtreecommitdiffstats
path: root/qtjp2imageformat/configure
diff options
context:
space:
mode:
authorJake Petroules <jake.petroules@petroules.com>2013-11-13 14:21:02 -0500
committerThiago Macieira <thiago.macieira@intel.com>2014-02-12 22:46:28 +0100
commitfd22bee22274975c56f1c10d87ee9fd2c0818f83 (patch)
tree157b21221e0d8233df59850d4e4f3537fb601240 /qtjp2imageformat/configure
parent80592b0e7145fb876ea0e84a6e3dadfd5f7481b6 (diff)
Remove JPEG 2000 plugin.
It is moving to the QtImageFormats module. Change-Id: I1b7e05e01852ce51e93189d5fb04af9c89f0c807 Reviewed-by: Lars Knoll <lars.knoll@digia.com> Reviewed-by: Jake Petroules <jake.petroules@petroules.com> Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
Diffstat (limited to 'qtjp2imageformat/configure')
-rwxr-xr-xqtjp2imageformat/configure25
1 files changed, 0 insertions, 25 deletions
diff --git a/qtjp2imageformat/configure b/qtjp2imageformat/configure
deleted file mode 100755
index 3c4edff..0000000
--- a/qtjp2imageformat/configure
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/bin/sh
-
-if [ "x$1" != "x" -a "x$1" != "x-library" ]; then
- echo "Usage: $0 [-library]"
- echo
- echo "-library: Build the component as a dynamic library (DLL). Default is to"
- echo " include the component source code directly in the application."
- echo
- exit 0
-fi
-
-rm -f config.pri
-if [ "x$1" = "x-library" ]; then
- echo "Configuring to build this component as a dynamic library."
- echo "SOLUTIONS_LIBRARY = yes" > config.pri
-fi
-
-echo
-echo "This component is now configured."
-echo
-echo "To build the component library (if requested) and example(s),"
-echo "run qmake and your make command."
-echo
-echo "To remove or reconfigure, run make distclean."
-echo