summaryrefslogtreecommitdiffstats
path: root/kio/misc/kpac/configure.in.in
diff options
context:
space:
mode:
authorDarrell Anderson <humanreadable@yahoo.com>2013-03-02 15:57:34 -0600
committerDarrell Anderson <humanreadable@yahoo.com>2013-03-02 15:57:34 -0600
commit7c0b0c9dc9fcbe9c198925bdc7ee18ac6be49f4f (patch)
treec76702a7f6310fbe9d437e347535422e836e94e9 /kio/misc/kpac/configure.in.in
parenta2a38be7600e2a2c2b49c66902d912ca036a2c0f (diff)
parent27bbee9a5f9dcda53d8eb23863ee670ad1360e41 (diff)
downloadtdelibs-7c0b0c9dc9fcbe9c198925bdc7ee18ac6be49f4f.tar.gz
tdelibs-7c0b0c9dc9fcbe9c198925bdc7ee18ac6be49f4f.zip
Merge branch 'master' of http://scm.trinitydesktop.org/scm/git/tdelibs
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)