diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-27 15:11:21 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-27 15:11:21 -0600 |
commit | 472156a41b1348c714986c772759ad950fffbe75 (patch) | |
tree | 86369dab3bbe3d52c49051665bdfb49b9dfc16e3 /tdeioslave/nfs | |
parent | 3e891e81335e5243583dab27faeebf001b8139a6 (diff) | |
download | tdebase-472156a41b1348c714986c772759ad950fffbe75.tar.gz tdebase-472156a41b1348c714986c772759ad950fffbe75.zip |
Rename kioslaves
Diffstat (limited to 'tdeioslave/nfs')
-rw-r--r-- | tdeioslave/nfs/CMakeLists.txt | 6 | ||||
-rw-r--r-- | tdeioslave/nfs/Makefile.am | 8 | ||||
-rw-r--r-- | tdeioslave/nfs/nfs.protocol | 2 | ||||
-rw-r--r-- | tdeioslave/nfs/tdeio_nfs.cpp (renamed from tdeioslave/nfs/kio_nfs.cpp) | 6 | ||||
-rw-r--r-- | tdeioslave/nfs/tdeio_nfs.h (renamed from tdeioslave/nfs/kio_nfs.h) | 0 |
5 files changed, 11 insertions, 11 deletions
diff --git a/tdeioslave/nfs/CMakeLists.txt b/tdeioslave/nfs/CMakeLists.txt index da9040fc9..c6ccd04f8 100644 --- a/tdeioslave/nfs/CMakeLists.txt +++ b/tdeioslave/nfs/CMakeLists.txt @@ -26,9 +26,9 @@ link_directories( install( FILES nfs.protocol DESTINATION ${SERVICES_INSTALL_DIR} ) -##### kio_nfs (module) ########################## +##### tdeio_nfs (module) ########################## -set( target kio_nfs ) +set( target tdeio_nfs ) add_custom_command( OUTPUT mount_xdr.c COMMAND rpcgen -c -o mount_xdr.c ${CMAKE_CURRENT_SOURCE_DIR}/mount.x @@ -39,7 +39,7 @@ add_custom_command( OUTPUT nfs_prot_xdr.c DEPENDS nfs_prot.x ) tde_add_kpart( ${target} AUTOMOC - SOURCES kio_nfs.cpp mount_xdr.c nfs_prot_xdr.c + SOURCES tdeio_nfs.cpp mount_xdr.c nfs_prot_xdr.c LINK tdeio-shared DESTINATION ${PLUGIN_INSTALL_DIR} ) diff --git a/tdeioslave/nfs/Makefile.am b/tdeioslave/nfs/Makefile.am index 4ab02fc1d..0857fa223 100644 --- a/tdeioslave/nfs/Makefile.am +++ b/tdeioslave/nfs/Makefile.am @@ -5,11 +5,11 @@ AM_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB ####### Files -kde_module_LTLIBRARIES = kio_nfs.la +kde_module_LTLIBRARIES = tdeio_nfs.la -kio_nfs_la_SOURCES = kio_nfs.cpp mount_xdr.c nfs_prot_xdr.c -kio_nfs_la_LIBADD = -lkio $(LIBRPC) -kio_nfs_la_LDFLAGS = $(all_libraries) -module $(KDE_PLUGIN) +tdeio_nfs_la_SOURCES = tdeio_nfs.cpp mount_xdr.c nfs_prot_xdr.c +tdeio_nfs_la_LIBADD = -ltdeio $(LIBRPC) +tdeio_nfs_la_LDFLAGS = $(all_libraries) -module $(KDE_PLUGIN) noinst_HEADERS = nfs_prot.h mount.h kdelnk_DATA = nfs.protocol diff --git a/tdeioslave/nfs/nfs.protocol b/tdeioslave/nfs/nfs.protocol index 8f62d779a..faaa442e1 100644 --- a/tdeioslave/nfs/nfs.protocol +++ b/tdeioslave/nfs/nfs.protocol @@ -1,5 +1,5 @@ [Protocol] -exec=kio_nfs +exec=tdeio_nfs protocol=nfs input=none output=filesystem diff --git a/tdeioslave/nfs/kio_nfs.cpp b/tdeioslave/nfs/tdeio_nfs.cpp index 8148a7745..d0051e10b 100644 --- a/tdeioslave/nfs/kio_nfs.cpp +++ b/tdeioslave/nfs/tdeio_nfs.cpp @@ -58,7 +58,7 @@ #include "nfs_prot.h" #define fhandle _fhandle #include "mount.h" -#include "kio_nfs.h" +#include "tdeio_nfs.h" #define MAXHOSTLEN 256 @@ -113,11 +113,11 @@ extern "C" { int KDE_EXPORT kdemain(int argc, char **argv); } int kdemain( int argc, char **argv ) { - TDEInstance instance( "kio_nfs" ); + TDEInstance instance( "tdeio_nfs" ); if (argc != 4) { - fprintf(stderr, "Usage: kio_nfs protocol domain-socket1 domain-socket2\n"); + fprintf(stderr, "Usage: tdeio_nfs protocol domain-socket1 domain-socket2\n"); exit(-1); } kdDebug(7121) << "NFS: kdemain: starting" << endl; diff --git a/tdeioslave/nfs/kio_nfs.h b/tdeioslave/nfs/tdeio_nfs.h index b548fc487..b548fc487 100644 --- a/tdeioslave/nfs/kio_nfs.h +++ b/tdeioslave/nfs/tdeio_nfs.h |