Sunday, May 19, 2024
 Popular · Latest · Hot · Upcoming
0
rated 0 times [  0] [ 0]  / answers: 1 / hits: 503  / 1 Year ago, thu, may 11, 2023, 9:37:54

I want to compile a program (KTIGCC), but it is intended to be used on KDE3, using Qt3 libs. Is there any possibility of compiling and using this program in my current KDE4?



Trying to run ./configure results in:



sh: 1: kde-config: not found
Project ERROR: KDE 3 kdelibs required.


The configure script:



#!/bin/bash
QMAKE_ARGS=""
if test ! -z "$1"
then case "$1" in
--prefix=*) QMAKE_ARGS=`echo $1 | sed 's/^--prefix/PREFIX/'` ;;
esac
fi
qmake $QMAKE_ARGS
if [ $? == 127 ]; then echo "error: Qt 3 required"; fi


(I'm rather new to KDE, so I may not be to exact with the KDE expressions etc.)



Note: I'm not using Kubuntu, but Ubuntu with kde-standard installed.


More From » kde

 Answers
4

The error came from the kde(4)-config itself. Now I found out that the program isn't able to run on KDE4 at all...



I think I'll start porting it to KDE4 myself. Let's see whether I'm successful.


[#26929] Friday, May 12, 2023, 1 Year  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
guialk

Total Points: 300
Total Questions: 144
Total Answers: 121

Location: Saint Vincent and the Grenadines
Member since Sat, Sep 11, 2021
3 Years ago
;