~ubuntu-branches/ubuntu/saucy/sudo/saucy

« back to all changes in this revision

Viewing changes to src/sudo_noexec.c

  • Committer: Package Import Robot
  • Author(s): Stéphane Graber
  • Date: 2012-11-16 09:31:32 UTC
  • mfrom: (1.4.13)
  • Revision ID: package-import@ubuntu.com-20121116093132-ptext55adlzbrq6y
Tags: 1.8.6p3-0ubuntu1
* New upstream release (1.8.6p3).
* Add patch to fix building with sssd when ldap is disabled.
* Drop sudo.manpages and sudo-ldap.manpages as the upstream build system
  now does the right thing here.
* Build the main sudo package with support for sssd, this doesn't add any
  additional build time or runtime dependency. sudo will dynamically load
  the sssd library if 'sss' is listed for the 'sudoers' nss service.

Show diffs side-by-side

added added

removed removed

Lines of Context:
41
41
}
42
42
 
43
43
#define DUMMY2(fn, t1, t2)                      \
44
 
int                                             \
 
44
__dso_public int                                \
45
45
fn(t1 a1, t2 a2)                                \
46
46
DUMMY_BODY
47
47
 
48
48
#define DUMMY3(fn, t1, t2, t3)                  \
49
 
int                                             \
 
49
__dso_public int                                \
50
50
fn(t1 a1, t2 a2, t3 a3)                         \
51
51
DUMMY_BODY
52
52
 
53
53
#define DUMMY6(fn, t1, t2, t3, t4, t5, t6)      \
54
 
int                                             \
 
54
__dso_public int                                \
55
55
fn(t1 a1, t2 a2, t3 a3, t4 a4, t5 a5, t6 a6)    \
56
56
DUMMY_BODY
57
57
 
58
58
#define DUMMY_VA(fn, t1, t2)                    \
59
 
int                                             \
 
59
__dso_public int                                \
60
60
fn(t1 a1, t2 a2, ...)                           \
61
61
DUMMY_BODY
62
62