diff options
author | Ned Ludd <solar@gentoo.org> | 2004-06-20 03:08:31 +0000 |
---|---|---|
committer | Ned Ludd <solar@gentoo.org> | 2004-06-20 03:08:31 +0000 |
commit | 3f86a8ee025c9629fd9d28f8f193e58a06da9cb2 (patch) | |
tree | 257207c52a4ec2c8a81b69756d671d043843310e /sys-fs/devfsd/files | |
parent | added IUSE=uclibc support for building portage with uclibc support (Manifest ... (diff) | |
download | gentoo-2-3f86a8ee025c9629fd9d28f8f193e58a06da9cb2.tar.gz gentoo-2-3f86a8ee025c9629fd9d28f8f193e58a06da9cb2.tar.bz2 gentoo-2-3f86a8ee025c9629fd9d28f8f193e58a06da9cb2.zip |
added patch to allow uclibc to compile without nis
Diffstat (limited to 'sys-fs/devfsd/files')
-rw-r--r-- | sys-fs/devfsd/files/devfsd-1.3.25-no-nis.patch | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/sys-fs/devfsd/files/devfsd-1.3.25-no-nis.patch b/sys-fs/devfsd/files/devfsd-1.3.25-no-nis.patch new file mode 100644 index 000000000000..c676b7e980c9 --- /dev/null +++ b/sys-fs/devfsd/files/devfsd-1.3.25-no-nis.patch @@ -0,0 +1,69 @@ +--- devfsd/devfsd.c.mps 2003-12-04 15:54:03.000000000 +0100 ++++ devfsd/devfsd.c 2003-12-04 16:05:32.000000000 +0100 +@@ -283,8 +283,10 @@ + #include <regex.h> + #include <errno.h> + #include <dlfcn.h> ++#ifdef HAVE_NIS + #include <rpcsvc/ypclnt.h> + #include <rpcsvc/yp_prot.h> ++#endif + #include <karma.h> + #include "devfsd.h" + #include "version.h" +@@ -414,9 +416,11 @@ + unsigned long *event_mask); + static void process_config_line (CONST char *line, unsigned long *event_mask); + static void *dlsym_nofail (const char *file, void *handle, char *symbol); ++#ifdef HAVE_NIS + static int process_yp_line (int instatus, char *inkey, int inkeylen, + char *inval, int invallen, char *indata); + static void load_libnsl (void); ++#endif + static flag do_servicing (int fd, unsigned long event_mask); + static void service_name (const struct devfsd_notify_struct *info); + static void action_permissions (const struct devfsd_notify_struct *info, +@@ -486,9 +490,11 @@ + {"fd/2", "stderr"}, + {NULL, NULL}, + }; ++#ifdef HAVE_NIS + static int (*my_yp_all) (char *domain, char *map, + struct ypall_callback *callback); /* = NULL */ + static int (*my_yp_get_default_domain) (char **domainptr); /* = NULL */ ++#endif + static struct event_type + { + unsigned int type; /* The DEVFSD_NOTIFY_* value */ +@@ -714,6 +720,7 @@ + [RETURNS] Nothing. + */ + { ++#ifdef HAVE_NIS + if (location[0] == '+') + { + /* It's a YP map */ +@@ -736,6 +743,7 @@ + SYSLOG (LOG_ERR, "error reading map: \"%s\"\n", location + 1); + exit (1); + } ++#endif + read_config_file (location, optional, event_mask); + } /* End Function read_config */ + +@@ -1006,6 +1014,7 @@ + return (result); + } /* End Function dlsym_nofail */ + ++#ifdef HAVE_NIS + static void load_libnsl (void) + { + #ifdef LIBNSL /* It comes from a shared object */ +@@ -1034,6 +1043,7 @@ + if (invallen > 0) process_config_line (inval, (unsigned long *) indata); + return (0); + } /* End Function process_yp_line */ ++#endif + + static flag do_servicing (int fd, unsigned long event_mask) + /* [SUMMARY] Service devfs changes until a signal is received. |