diff options
author | Timothy Pearson <[email protected]> | 2013-01-27 01:02:02 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-01-27 01:02:02 -0600 |
commit | de7e5867a65e0a46f1388e3e50bc7eeddd1aecbf (patch) | |
tree | dbb3152c372f8620f9290137d461f3d9f9eba1cb /kioslave/smb/configure.in.in | |
parent | 936d3cec490c13f2c5f7dd14f5e364fddaa6da71 (diff) | |
download | tdebase-de7e5867a65e0a46f1388e3e50bc7eeddd1aecbf.tar.gz tdebase-de7e5867a65e0a46f1388e3e50bc7eeddd1aecbf.zip |
Rename a number of libraries and executables to avoid conflicts with KDE4
Diffstat (limited to 'kioslave/smb/configure.in.in')
-rw-r--r-- | kioslave/smb/configure.in.in | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/kioslave/smb/configure.in.in b/kioslave/smb/configure.in.in deleted file mode 100644 index 0a0cdcc86..000000000 --- a/kioslave/smb/configure.in.in +++ /dev/null @@ -1,34 +0,0 @@ -AC_DEFUN([SMB_CHECK], -[ -AC_REQUIRE([KDE_CHECK_LARGEFILE]) - -AC_ARG_WITH(samba, - [AC_HELP_STRING(--with-samba, - [enable the samba ioslave @<:@default=check@:>@])], - [], with_samba=check) - -have_libsmbclient=no -if test "x$with_samba" != xno; then - have_libsmbclient=yes - KDE_CHECK_HEADER(libsmbclient.h, [], [have_libsmbclient=no]) - KDE_CHECK_LIB(smbclient, smbc_new_context, [], [have_libsmbclient=no]) - - SMBCLIENT_EXTRA_LIBS="" - AC_CHECK_FUNC(yp_get_default_domain, [], - [ - KDE_CHECK_LIB(nsl, yp_get_default_domain, - [SMBCLIENT_EXTRA_LIBS="-lnsl"] ) - ]) - - AC_SUBST(SMBCLIENT_EXTRA_LIBS) - - if test "x$with_samba" != xcheck && test "x$have_libsmbclient" = xno; then - AC_MSG_ERROR([--with-samba was given, but test for libsmbclient failed]) - fi -fi - -AM_CONDITIONAL(include_kioslave_smb, test "x$have_libsmbclient" = xyes) - -]) - -SMB_CHECK |