summaryrefslogtreecommitdiffstats
path: root/kio/misc/kpac/configure.in.in
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-27 01:04:16 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-27 01:04:16 -0600
commit5159cd2beb2e87806a5b54e9991b7895285c9d3e (patch)
tree9b70e8be47a390f8f4d56ead812ab0c9dad88709 /kio/misc/kpac/configure.in.in
parentc17cb900dcf52b8bd6dc300d4f103392900ec2b4 (diff)
downloadtdelibs-5159cd2beb2e87806a5b54e9991b7895285c9d3e.tar.gz
tdelibs-5159cd2beb2e87806a5b54e9991b7895285c9d3e.zip
Rename a number of libraries and executables to avoid conflicts with KDE4
Diffstat (limited to 'kio/misc/kpac/configure.in.in')
-rw-r--r--kio/misc/kpac/configure.in.in26
1 files changed, 0 insertions, 26 deletions
diff --git a/kio/misc/kpac/configure.in.in b/kio/misc/kpac/configure.in.in
deleted file mode 100644
index a65b9a1c8..000000000
--- a/kio/misc/kpac/configure.in.in
+++ /dev/null
@@ -1,26 +0,0 @@
-dnl some setgroups() implementations seem to have short* instead of gid_t*
-dnl and use some flags in the fiels that follows the gids
-AC_MSG_CHECKING([for setgroups with short argument])
-AC_CACHE_VAL([kde_cv_shortsetgroups],[
- AC_TRY_RUN([
- int main()
- {
- short x[4];
- x[0] = x[1] = 1;
- if (getgroups(1, x) == 0) if (setgroups(1, x) == -1) exit(1);
-
- if (getgroups(1, x) == -1) exit(1);
- if (x[1] != 1) exit(1);
- x[1] = 2;
- if (getgroups(1, x) == -1) exit(1);
- if (x[1] != 2) exit(1);
- exit(0);
- }
- ],[kde_cv_shortsetgroups="yes"],[kde_cv_shortsetgroups="no"])
-])
-AC_MSG_RESULT($kde_cv_shortsetgroups)
-if test "$kde_cv_shortsetgroups" = "yes"; then
- AC_DEFINE(HAVE_SHORTSETGROUPS,1,[if setgroups() takes short *as second arg])
-fi
-
-AC_CHECK_HEADERS(arpa/nameser8_compat.h sys/param.h)