Disable autoscan options until an alternative is found to Dazuko.

Also see issue #10.

Signed-off-by: Mavridis Philippe <mavridisf@gmail.com>
pull/24/head
Mavridis Philippe 3 years ago
parent c3170f61a9
commit c3278e0e46
No known key found for this signature in database
GPG Key ID: F8D2D7E2F989A494

@ -22,6 +22,7 @@ klamav_LDFLAGS = $(KDE_RPATH) $(all_libraries)
klamav_LDADD = $(LIB_TQT) $(LIB_TDECORE) -lDCOP $(LIB_TDEIO) $(LIB_TDEUI) $(LIB_TDEPARTS) $(LIB_TDEHTML) $(LIB_SQLITE) $(LIB_SQLITE_LOCAL) $(LIB_CLAM) -lz
# which sources should be compiled for klamav
# autoscanoptions.ui excluded until autoscan is reimplemented
klamav_SOURCES = main.cpp klamav.cpp freshklam.cpp sigtool.cpp klamscan.cpp \
kuarantine.cpp welcome.cpp dbviewer.cpp \
frame.cpp tabwidget.cpp viewer.cpp pageviewer.cpp klamav_run.cpp dcopklamscan.skel \
@ -29,7 +30,7 @@ klamav_SOURCES = main.cpp klamav.cpp freshklam.cpp sigtool.cpp klamscan.cpp \
ctcron.cpp ctmonth.cpp ctdom.cpp ctdow.cpp cttask.cpp ctvariable.cpp \
ktlistitem.cpp ktlisttask.cpp ktlisttasks.cpp ktview.cpp ktlistcron.cpp \
kticon.cpp activityviewer.cpp collectiondb.cpp archivelimits.ui \
archivetypes.ui specialfiletypes.ui firstrunwizard.ui configdialog.cpp autoscanoptions.ui logoptions.ui klamavconfig.kcfgc k3bjobprogressosd_mod.cpp update.cpp
archivetypes.ui specialfiletypes.ui firstrunwizard.ui configdialog.cpp logoptions.ui klamavconfig.kcfgc k3bjobprogressosd_mod.cpp update.cpp
@ -63,5 +64,6 @@ eventsrc_DATA = eventsrc
kde_kcfg_DATA = klamavconfig.kcfg
main.o : archivelimits.h archivetypes.h specialfiletypes.h firstrunwizard.h autoscanoptions.h logoptions.h klamavconfig.h
# autoscanoptions.h excluded (see above)
main.o : archivelimits.h archivetypes.h specialfiletypes.h firstrunwizard.h logoptions.h klamavconfig.h

@ -17,7 +17,7 @@ email : markey@web.de
#include "archivelimits.h"
#include "archivetypes.h"
#include "specialfiletypes.h"
#include "autoscanoptions.h"
/* #include "autoscanoptions.h" */
#include "logoptions.h"
#include "sigtool.h"
@ -56,7 +56,7 @@ KlamavConfigDialog::KlamavConfigDialog( TQWidget *parent, const char* name, TDEC
m_archivetypes = new ArchiveTypes( 0, "Archive Types" );
m_emailprotection = new Sigtool ( 0, "E-mail protection" );
m_specialfiletypes = new SpecialFileTypes( 0, "File Types" );
m_autoscanoptions = new AutoScanOptions( 0, "Auto-Scan" );
/* m_autoscanoptions = new AutoScanOptions( 0, "Auto-Scan" ); */
m_logoptions = new LogOptions( 0, "Event Logging" );
// add pages
@ -64,7 +64,7 @@ KlamavConfigDialog::KlamavConfigDialog( TQWidget *parent, const char* name, TDEC
addPage( m_archivetypes, i18n( "Archive Types" ), "application-x-tarz", i18n( "Configure Archive Types" ) );
addPage( m_emailprotection, i18n( "E-mail protection" ), "email", i18n( "Set up your e-mail client to use Klammail" ) );
addPage( m_specialfiletypes, i18n( "File Types" ), "folder", i18n( "Configure File Types" ) );
addPage( m_autoscanoptions, i18n( "Auto-Scan" ), "filefind", i18n( "Configure Auto-Scan" ) );
/* addPage( m_autoscanoptions, i18n( "Auto-Scan" ), "filefind", i18n( "Configure Auto-Scan" ) ); */
addPage( m_logoptions, i18n( "Event Logging" ), "kate", i18n( "Configure Events to Log" ) );
TQObjectList *list = queryList( "TQLabel", "infoPixmap" );

Loading…
Cancel
Save