diff options
author | Timothy Pearson <[email protected]> | 2011-11-06 15:56:34 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-11-06 15:56:34 -0600 |
commit | b529f046c9a64ac5fcfa60747af940cf972b3ebc (patch) | |
tree | 83c28cf7fa8fed1960ebd3924b579e7ed8c95cc6 /kdesu/configure.in.in | |
parent | 6508fe4c40c60fd7a43bd3d9e19b762e10ea3f53 (diff) | |
download | tdebase-b529f046c9a64ac5fcfa60747af940cf972b3ebc.tar.gz tdebase-b529f046c9a64ac5fcfa60747af940cf972b3ebc.zip |
Actually move the kde files that were renamed in the last commit
Diffstat (limited to 'kdesu/configure.in.in')
-rw-r--r-- | kdesu/configure.in.in | 62 |
1 files changed, 0 insertions, 62 deletions
diff --git a/kdesu/configure.in.in b/kdesu/configure.in.in deleted file mode 100644 index 512825786..000000000 --- a/kdesu/configure.in.in +++ /dev/null @@ -1,62 +0,0 @@ -dnl Check for "struct ucred" -AC_MSG_CHECKING("struct ucred") -AC_TRY_COMPILE( -[ - #define _GNU_SOURCE 1 - #include <sys/socket.h> -], -[ - struct ucred red; -], have_ucred=yes - , have_ucred=no -) -if test "$have_ucred" = "yes"; then - AC_DEFINE(HAVE_STRUCT_UCRED, 1, [Define if you have the struct ucred]) - AC_MSG_RESULT(yes) -else - AC_MSG_RESULT(no) -fi - -dnl Check for the group "nogroup" or "nobody" Use -2 otherwise. -AC_MSG_CHECKING(nogroup) -AC_TRY_RUN([ - #include <grp.h> - #include <sys/types.h> - - int main() - { - struct group *grp = getgrnam("nogroup"); - if (grp) return 0; - return 1; - } -], nogroup=nogroup, -AC_TRY_RUN([ - #include <grp.h> - #include <sys/types.h> - - int main() - { - struct group *grp = getgrnam("nobody"); - if (grp) return 0; - return 1; - } -], nogroup=nobody, -nogroup=65534, nogroup=65534), nogroup=65534) -AC_MSG_RESULT($nogroup) -AC_SUBST(nogroup) -AC_CHECK_FUNCS(getpeereid) - -AC_ARG_WITH(sudo-tdesu-backend, - AC_HELP_STRING([--with-sudo-tdesu-backend], - [use sudo as backend for tdesu (default is su)]), -[ - if test x$withval = xyes; then - use_tdesu_backend="sudo" - else - use_tdesu_backend="su" - fi -], - use_tdesu_backend="su" -) - -AC_DEFINE_UNQUOTED(DEFAULT_SUPER_USER_COMMAND, "$use_tdesu_backend", [Use su or sudo]) |