By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 1330
Collapse All | Expand All

(-)a/filesharing/advanced/kcm_sambaconf/CMakeLists.txt (+18 lines)
Lines 37-42 tde_add_library( filesharesamba STATIC_PIC AUTOMOC Link Here
37
    filemodedlgimpl.cpp smbpasswdfile.cpp passwd.cpp hiddenfileview.cpp
37
    filemodedlgimpl.cpp smbpasswdfile.cpp passwd.cpp hiddenfileview.cpp
38
    dictmanager.cpp qmultichecklistitem.cpp smbconfconfigwidget.cpp
38
    dictmanager.cpp qmultichecklistitem.cpp smbconfconfigwidget.cpp
39
    linuxpermissionchecker.cpp expertuserdlg.ui
39
    linuxpermissionchecker.cpp expertuserdlg.ui
40
  DEPENDENCIES filesharesamba_generate_headers
41
)
42
43
#  Those headers are also required by target in another subdirectory. 
44
# So we have to add such target for our generated header files to avoid
45
# race conditions.
46
# SEE cmake FAQ: http://www.cmake.org/Wiki/CMake_FAQ
47
#
48
add_custom_target( filesharesamba_generate_headers 
49
  DEPENDS  
50
    ${CMAKE_CURRENT_BINARY_DIR}/share.h 
51
    ${CMAKE_CURRENT_BINARY_DIR}/share.h 
52
    ${CMAKE_CURRENT_BINARY_DIR}/socketoptionsdlg.h
53
    ${CMAKE_CURRENT_BINARY_DIR}/userselectdlg.h
54
    ${CMAKE_CURRENT_BINARY_DIR}/groupselectdlg.h
55
    ${CMAKE_CURRENT_BINARY_DIR}/usertab.h
56
    ${CMAKE_CURRENT_BINARY_DIR}/filemodedlg.h
57
    ${CMAKE_CURRENT_BINARY_DIR}/expertuserdlg.h
40
)
58
)
41
59
42
60
(-)a/filesharing/advanced/propsdlgplugin/CMakeLists.txt (-2 / +3 lines)
Lines 11-17 Link Here
11
11
12
include_directories(
12
include_directories(
13
  ${CMAKE_CURRENT_BINARY_DIR}
13
  ${CMAKE_CURRENT_BINARY_DIR}
14
  ${CMAKE_CURRENT_BINARY_DIR}/../kcm_sambaconf
14
  ${CMAKE_BINARY_DIR}/filesharing/advanced/kcm_sambaconf
15
  ${CMAKE_SOURCE_DIR}/filesharing/advanced/kcm_sambaconf
15
  ${TDE_INCLUDE_DIR}
16
  ${TDE_INCLUDE_DIR}
16
  ${TQT_INCLUDE_DIRS}
17
  ${TQT_INCLUDE_DIRS}
17
)
18
)
Lines 32-38 install( FILES Link Here
32
33
33
tde_add_library( propsdlgplugin_common STATIC_PIC AUTOMOC
34
tde_add_library( propsdlgplugin_common STATIC_PIC AUTOMOC
34
  SOURCES propertiespage.cpp propertiespagegui.ui
35
  SOURCES propertiespage.cpp propertiespagegui.ui
35
  DEPENDENCIES filesharesamba
36
  DEPENDENCIES filesharesamba_generate_headers 
36
)
37
)
37
38
38
39
(-)a/filesharing/advanced/propsdlgplugin/propertiespage.cpp (-3 / +3 lines)
Lines 44-52 Link Here
44
#include "../nfs/nfsdialog.h"
44
#include "../nfs/nfsdialog.h"
45
45
46
// Samba related
46
// Samba related
47
#include "../kcm_sambaconf/sambafile.h"
47
#include "sambafile.h"
48
#include "../kcm_sambaconf/sambashare.h"
48
#include "sambashare.h"
49
#include "../kcm_sambaconf/sharedlgimpl.h"
49
#include "sharedlgimpl.h"
50
50
51
#include "propertiespage.h"
51
#include "propertiespage.h"
52
52
(-)a/filesharing/advanced/propsdlgplugin/Makefile.am (+3 lines)
Lines 1-5 Link Here
1
METASOURCES = AUTO 
1
METASOURCES = AUTO 
2
2
3
INCLUDES = -I$(top_srcdir)/filesharing/advanced/kcm_sambaconf \
4
           -I$(top_builddir)/filesharing/advanced/kcm_sambaconf \
5
           $(all_includes)
3
6
4
kde_module_LTLIBRARIES = fileshare_propsdlgplugin.la
7
kde_module_LTLIBRARIES = fileshare_propsdlgplugin.la
5
8

Return to bug 1330