17ee0d9625
non-libtool mode to use libool. In this way, qmake will generates valid install commands. This closes PR pkg/29572. Bump qt3-tools PKGREVISION.
16 lines
566 B
Text
16 lines
566 B
Text
$NetBSD: patch-am,v 1.1 2006/03/12 06:49:21 minskim Exp $
|
|
|
|
--- qmake/project.cpp.orig 2005-09-02 12:43:19.000000000 +0000
|
|
+++ qmake/project.cpp
|
|
@@ -695,6 +695,11 @@ QMakeProject::isActiveConfig(const QStri
|
|
if(x.isEmpty())
|
|
return TRUE;
|
|
|
|
+ if(x == "compile_libtool" &&
|
|
+ (vars["TEMPLATE"].first() == "app" ||
|
|
+ vars["TEMPLATE"].first() == "lib"))
|
|
+ return TRUE;
|
|
+
|
|
if((Option::target_mode == Option::TARG_MACX_MODE || Option::target_mode == Option::TARG_QNX6_MODE ||
|
|
Option::target_mode == Option::TARG_UNIX_MODE) && x == "unix")
|
|
return TRUE;
|