summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris <[email protected]>2019-08-12 18:42:41 +0200
committerMichele Calgaro <[email protected]>2019-08-13 11:47:49 +0900
commit339b431a6e47beec5a35b728415af4f269f407f1 (patch)
treeced2b3e13cf519cbab3690b450abdf3c67c4e7bf
parent30efa31c1bbffb51602045f29e9034337157ec3f (diff)
downloadtqca-339b431a6e47beec5a35b728415af4f269f407f1.tar.gz
tqca-339b431a6e47beec5a35b728415af4f269f407f1.zip
Replace Qt branding with TQt ones.r14.0.7
Signed-off-by: Chris <[email protected]> Signed-off-by: Michele Calgaro <[email protected]> (cherry picked from commit 24c97b77f50f29d9296a005e9f3f5ba0a38319b1)
-rw-r--r--README4
-rwxr-xr-xconfigure18
2 files changed, 11 insertions, 11 deletions
diff --git a/README b/README
index b909bc3..2a7f471 100644
--- a/README
+++ b/README
@@ -1,4 +1,4 @@
-Qt Cryptographic Architecture
+TQt Cryptographic Architecture
-----------------------------
Version: API v1.0, Plugin v1
Author: Justin Karneges <[email protected]>
@@ -20,7 +20,7 @@ upgrading a crypto plugin. Also, by pushing crypto functionality into
plugins, your application is free of legal issues, such as export
regulation.
-And of course, you get a very simple crypto API for Qt, where you can
+And of course, you get a very simple crypto API for TQt, where you can
do things like:
TQString hash = QCA::SHA1::hashToString(blockOfData);
diff --git a/configure b/configure
index d608b58..e1bf14b 100755
--- a/configure
+++ b/configure
@@ -8,7 +8,7 @@ This script creates necessary configuration files to build/install.
Main options:
--prefix=[path] Base path for build/install. Default: /usr/local
- --qtdir=[path] Directory where Qt is installed.
+ --tqtdir=[path] Directory where TQt is installed.
--help This help text.
EOT
@@ -21,8 +21,8 @@ while [ $# -gt 0 ]; do
shift
;;
- --qtdir=*)
- QTDIR=`expr "${1}" : "--qtdir=\(.*\)"`
+ --tqtdir=*)
+ TQTDIR=`expr "${1}" : "--tqtdir=\(.*\)"`
shift
;;
@@ -50,7 +50,7 @@ printf "Verifying TQt 3.x Multithreaded (MT) build environment ... "
if [ -z "$QTDIR" ]; then
if [ "$QC_DEBUG" = "Y" ]; then
- echo \$QTDIR not set... trying to find Qt manually
+ echo \$TQTDIR not set... trying to find TQt manually
fi
for p in /usr/lib/tqt /usr/share/tqt /usr/share/tqt3 /usr/local/lib/tqt /usr/local/share/tqt /usr/lib/tqt3 /usr/local/lib/tqt3 /usr/lib/qt /usr/share/qt /usr/share/qt3 /usr/local/lib/qt /usr/local/share/qt /usr/lib/qt3 /usr/local/lib/qt3 /usr/lib64/tqt /usr/local/lib64/tqt /usr/lib64/tqt3 /usr/local/lib64/tqt3 /usr/lib64/qt /usr/local/lib64/qt /usr/lib64/qt3 /usr/local/lib64/qt3 /usr/X11R6/share/qt /usr/qt/3 ; do
if [ -d "$p/mkspecs" ]; then
@@ -61,11 +61,11 @@ if [ -z "$QTDIR" ]; then
if [ -z "$QTDIR" ]; then
echo fail
echo
- echo Unable to find Qt 'mkspecs'. Please set QTDIR
- echo manually. Perhaps you need to install Qt 3
- echo development utilities. You may download them either
- echo from the vendor of your operating system or from
- echo www.trolltech.com
+ echo Unable to find TQt 'mkspecs'. Please set TQTDIR
+ echo manually. Perhaps you need to install TQt 3
+ echo development utilities. You may download them
+ echo from the the repos of your distribution or from
+ echo https://mirror.git.trinitydesktop.org/gitea/TDE/tqt3/.
echo
exit 1;
fi