This version comes with the following usability enhancements: * Added checkbox to the Preferences dialog, this checkbox turns off some tooltips that can be annoying for users who are sufficiently familiar with the GUI. * Added a tab "Policy Rule" to the "Objects" page of the global preferences dialog; checkbox in this tab allows the user to choose whether new policy rules should be created with logging turned on or off. The major bug fixes in this release include: * Fixed installer issue for Windows users that use Putty sessions. Built-in policy installer can use putty session on Windows when it runs pscp.exe utility to copy generated script to the firewall * Fixed bug in the generated iptables script that made it to not configure broadcast address when it added ip addresses to interfaces. * Several bugs that affected cluster configurations were fixed.
34 lines
943 B
Text
34 lines
943 B
Text
$NetBSD: patch-ab,v 1.5 2011/04/12 13:41:17 adam Exp $
|
|
|
|
--- qmake.inc.in.orig 2010-11-17 05:18:12.000000000 +0000
|
|
+++ qmake.inc.in
|
|
@@ -22,7 +22,6 @@ unix {
|
|
LIBS += @PTHREAD_LIBS@ @XML_LIBS@ @XSLT_LIBS@ @LIBSNMP_LIBS@ \
|
|
@LIB_RESOLV@ @LIBS@
|
|
|
|
- !macx {
|
|
UI_DIR = .ui
|
|
MOC_DIR = .moc
|
|
OBJECTS_DIR = .obj
|
|
@@ -35,12 +34,10 @@ unix {
|
|
migration.path = @TEMPLATE_DIR@/migration
|
|
doc.path = @DOCDIR@
|
|
|
|
- CONFIG += warn_on debug
|
|
+ CONFIG += warn_on
|
|
QMAKE_CFLAGS_DEBUG += -Wno-unused-parameter
|
|
- QMAKE_CFLAGS_RELEASE += -Wno-unused-parameter
|
|
QMAKE_CXXFLAGS_DEBUG += -Wno-unused-parameter @CXXFLAGS@
|
|
- QMAKE_CXXFLAGS_RELEASE += -Wno-unused-parameter @CXXFLAGS@
|
|
- }
|
|
+ QMAKE_CXXFLAGS_RELEASE += @CXXFLAGS@
|
|
}
|
|
|
|
exists(qmake2.inc) {
|
|
@@ -48,5 +45,6 @@ exists(qmake2.inc) {
|
|
}
|
|
|
|
CONFIG -= qt
|
|
+CONFIG += thread
|
|
|
|
INSTALLS += target
|