Author: tridge Date: 2006-09-07 07:13:35 +0000 (Thu, 07 Sep 2006) New Revision: 18204
WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=18204 Log: darn, compilers always look in the directory the source is in for headers with "" even with a -I override. That means our heimdal_build/ roken override doesn't work. Switching to <> style includes in roken fixes this. lha, would be be acceptable upstream? I notice that half your includes of roken.h are with <> now anyway, so should be harmless (and even more consistent!) Modified: branches/SAMBA_4_0/source/heimdal/lib/roken/bswap.c branches/SAMBA_4_0/source/heimdal/lib/roken/copyhostent.c branches/SAMBA_4_0/source/heimdal/lib/roken/freeaddrinfo.c branches/SAMBA_4_0/source/heimdal/lib/roken/freehostent.c branches/SAMBA_4_0/source/heimdal/lib/roken/gai_strerror.c branches/SAMBA_4_0/source/heimdal/lib/roken/getaddrinfo.c branches/SAMBA_4_0/source/heimdal/lib/roken/getipnodebyaddr.c branches/SAMBA_4_0/source/heimdal/lib/roken/getipnodebyname.c branches/SAMBA_4_0/source/heimdal/lib/roken/getprogname.c branches/SAMBA_4_0/source/heimdal/lib/roken/hex.c branches/SAMBA_4_0/source/heimdal/lib/roken/hostent_find_fqdn.c branches/SAMBA_4_0/source/heimdal/lib/roken/inet_aton.c branches/SAMBA_4_0/source/heimdal/lib/roken/issuid.c branches/SAMBA_4_0/source/heimdal/lib/roken/resolve.c branches/SAMBA_4_0/source/heimdal/lib/roken/setprogname.c branches/SAMBA_4_0/source/heimdal/lib/roken/signal.c branches/SAMBA_4_0/source/heimdal/lib/roken/strsep.c branches/SAMBA_4_0/source/heimdal/lib/roken/strsep_copy.c Changeset: Modified: branches/SAMBA_4_0/source/heimdal/lib/roken/bswap.c =================================================================== --- branches/SAMBA_4_0/source/heimdal/lib/roken/bswap.c 2006-09-07 04:52:06 UTC (rev 18203) +++ branches/SAMBA_4_0/source/heimdal/lib/roken/bswap.c 2006-09-07 07:13:35 UTC (rev 18204) @@ -34,7 +34,7 @@ #ifdef HAVE_CONFIG_H #include <config.h> #endif -#include "roken.h" +#include <roken.h> RCSID("$Id: bswap.c,v 1.4 2005/04/12 11:28:35 lha Exp $"); Modified: branches/SAMBA_4_0/source/heimdal/lib/roken/copyhostent.c =================================================================== --- branches/SAMBA_4_0/source/heimdal/lib/roken/copyhostent.c 2006-09-07 04:52:06 UTC (rev 18203) +++ branches/SAMBA_4_0/source/heimdal/lib/roken/copyhostent.c 2006-09-07 07:13:35 UTC (rev 18204) @@ -36,7 +36,7 @@ RCSID("$Id: copyhostent.c,v 1.3 2005/04/12 11:28:36 lha Exp $"); #endif -#include "roken.h" +#include <roken.h> /* * return a malloced copy of `h' Modified: branches/SAMBA_4_0/source/heimdal/lib/roken/freeaddrinfo.c =================================================================== --- branches/SAMBA_4_0/source/heimdal/lib/roken/freeaddrinfo.c 2006-09-07 04:52:06 UTC (rev 18203) +++ branches/SAMBA_4_0/source/heimdal/lib/roken/freeaddrinfo.c 2006-09-07 07:13:35 UTC (rev 18204) @@ -36,7 +36,7 @@ RCSID("$Id: freeaddrinfo.c,v 1.5 2005/04/12 11:28:41 lha Exp $"); #endif -#include "roken.h" +#include <roken.h> /* * free the list of `struct addrinfo' starting at `ai' Modified: branches/SAMBA_4_0/source/heimdal/lib/roken/freehostent.c =================================================================== --- branches/SAMBA_4_0/source/heimdal/lib/roken/freehostent.c 2006-09-07 04:52:06 UTC (rev 18203) +++ branches/SAMBA_4_0/source/heimdal/lib/roken/freehostent.c 2006-09-07 07:13:35 UTC (rev 18204) @@ -36,7 +36,7 @@ RCSID("$Id: freehostent.c,v 1.3 2005/04/12 11:28:41 lha Exp $"); #endif -#include "roken.h" +#include <roken.h> /* * free a malloced hostent Modified: branches/SAMBA_4_0/source/heimdal/lib/roken/gai_strerror.c =================================================================== --- branches/SAMBA_4_0/source/heimdal/lib/roken/gai_strerror.c 2006-09-07 04:52:06 UTC (rev 18203) +++ branches/SAMBA_4_0/source/heimdal/lib/roken/gai_strerror.c 2006-09-07 07:13:35 UTC (rev 18204) @@ -36,7 +36,7 @@ RCSID("$Id: gai_strerror.c,v 1.7 2005/08/05 09:31:35 lha Exp $"); #endif -#include "roken.h" +#include <roken.h> static struct gai_error { int code; Modified: branches/SAMBA_4_0/source/heimdal/lib/roken/getaddrinfo.c =================================================================== --- branches/SAMBA_4_0/source/heimdal/lib/roken/getaddrinfo.c 2006-09-07 04:52:06 UTC (rev 18203) +++ branches/SAMBA_4_0/source/heimdal/lib/roken/getaddrinfo.c 2006-09-07 07:13:35 UTC (rev 18204) @@ -36,7 +36,7 @@ RCSID("$Id: getaddrinfo.c,v 1.14 2005/06/16 17:49:29 lha Exp $"); #endif -#include "roken.h" +#include <roken.h> /* * uses hints->ai_socktype and hints->ai_protocol Modified: branches/SAMBA_4_0/source/heimdal/lib/roken/getipnodebyaddr.c =================================================================== --- branches/SAMBA_4_0/source/heimdal/lib/roken/getipnodebyaddr.c 2006-09-07 04:52:06 UTC (rev 18203) +++ branches/SAMBA_4_0/source/heimdal/lib/roken/getipnodebyaddr.c 2006-09-07 07:13:35 UTC (rev 18204) @@ -36,7 +36,7 @@ RCSID("$Id: getipnodebyaddr.c,v 1.3 2005/04/12 11:28:47 lha Exp $"); #endif -#include "roken.h" +#include <roken.h> /* * lookup `src, len' (address family `af') in DNS and return a pointer Modified: branches/SAMBA_4_0/source/heimdal/lib/roken/getipnodebyname.c =================================================================== --- branches/SAMBA_4_0/source/heimdal/lib/roken/getipnodebyname.c 2006-09-07 04:52:06 UTC (rev 18203) +++ branches/SAMBA_4_0/source/heimdal/lib/roken/getipnodebyname.c 2006-09-07 07:13:35 UTC (rev 18204) @@ -36,7 +36,7 @@ RCSID("$Id: getipnodebyname.c,v 1.4 2005/04/12 11:28:47 lha Exp $"); #endif -#include "roken.h" +#include <roken.h> #ifndef HAVE_H_ERRNO static int h_errno = NO_RECOVERY; Modified: branches/SAMBA_4_0/source/heimdal/lib/roken/getprogname.c =================================================================== --- branches/SAMBA_4_0/source/heimdal/lib/roken/getprogname.c 2006-09-07 04:52:06 UTC (rev 18203) +++ branches/SAMBA_4_0/source/heimdal/lib/roken/getprogname.c 2006-09-07 07:13:35 UTC (rev 18204) @@ -36,7 +36,7 @@ RCSID("$Id: getprogname.c,v 1.3 2005/04/12 11:28:48 lha Exp $"); #endif -#include "roken.h" +#include <roken.h> #ifndef HAVE___PROGNAME const char *__progname; Modified: branches/SAMBA_4_0/source/heimdal/lib/roken/hex.c =================================================================== --- branches/SAMBA_4_0/source/heimdal/lib/roken/hex.c 2006-09-07 04:52:06 UTC (rev 18203) +++ branches/SAMBA_4_0/source/heimdal/lib/roken/hex.c 2006-09-07 07:13:35 UTC (rev 18204) @@ -35,7 +35,7 @@ #include <config.h> RCSID("$Id: hex.c,v 1.8 2006/01/09 17:09:29 lha Exp $"); #endif -#include "roken.h" +#include <roken.h> #include <ctype.h> #include "hex.h" Modified: branches/SAMBA_4_0/source/heimdal/lib/roken/hostent_find_fqdn.c =================================================================== --- branches/SAMBA_4_0/source/heimdal/lib/roken/hostent_find_fqdn.c 2006-09-07 04:52:06 UTC (rev 18203) +++ branches/SAMBA_4_0/source/heimdal/lib/roken/hostent_find_fqdn.c 2006-09-07 07:13:35 UTC (rev 18204) @@ -36,7 +36,7 @@ RCSID("$Id: hostent_find_fqdn.c,v 1.3 2005/04/12 11:28:51 lha Exp $"); #endif -#include "roken.h" +#include <roken.h> /* * Try to find a fqdn (with `.') in he if possible, else return h_name Modified: branches/SAMBA_4_0/source/heimdal/lib/roken/inet_aton.c =================================================================== --- branches/SAMBA_4_0/source/heimdal/lib/roken/inet_aton.c 2006-09-07 04:52:06 UTC (rev 18203) +++ branches/SAMBA_4_0/source/heimdal/lib/roken/inet_aton.c 2006-09-07 07:13:35 UTC (rev 18204) @@ -36,7 +36,7 @@ RCSID("$Id: inet_aton.c,v 1.14 2005/04/12 11:28:52 lha Exp $"); #endif -#include "roken.h" +#include <roken.h> /* Minimal implementation of inet_aton. * Cannot distinguish between failure and a local broadcast address. */ Modified: branches/SAMBA_4_0/source/heimdal/lib/roken/issuid.c =================================================================== --- branches/SAMBA_4_0/source/heimdal/lib/roken/issuid.c 2006-09-07 04:52:06 UTC (rev 18203) +++ branches/SAMBA_4_0/source/heimdal/lib/roken/issuid.c 2006-09-07 07:13:35 UTC (rev 18204) @@ -36,7 +36,7 @@ RCSID("$Id: issuid.c,v 1.6 2005/05/13 07:42:03 lha Exp $"); #endif -#include "roken.h" +#include <roken.h> int ROKEN_LIB_FUNCTION issuid(void) Modified: branches/SAMBA_4_0/source/heimdal/lib/roken/resolve.c =================================================================== --- branches/SAMBA_4_0/source/heimdal/lib/roken/resolve.c 2006-09-07 04:52:06 UTC (rev 18203) +++ branches/SAMBA_4_0/source/heimdal/lib/roken/resolve.c 2006-09-07 07:13:35 UTC (rev 18204) @@ -34,7 +34,7 @@ #ifdef HAVE_CONFIG_H #include <config.h> #endif -#include "roken.h" +#include <roken.h> #ifdef HAVE_ARPA_NAMESER_H #include <arpa/nameser.h> #endif Modified: branches/SAMBA_4_0/source/heimdal/lib/roken/setprogname.c =================================================================== --- branches/SAMBA_4_0/source/heimdal/lib/roken/setprogname.c 2006-09-07 04:52:06 UTC (rev 18203) +++ branches/SAMBA_4_0/source/heimdal/lib/roken/setprogname.c 2006-09-07 07:13:35 UTC (rev 18204) @@ -36,7 +36,7 @@ RCSID("$Id: setprogname.c,v 1.4 2005/08/23 10:19:20 lha Exp $"); #endif -#include "roken.h" +#include <roken.h> #ifndef HAVE___PROGNAME extern const char *__progname; Modified: branches/SAMBA_4_0/source/heimdal/lib/roken/signal.c =================================================================== --- branches/SAMBA_4_0/source/heimdal/lib/roken/signal.c 2006-09-07 04:52:06 UTC (rev 18203) +++ branches/SAMBA_4_0/source/heimdal/lib/roken/signal.c 2006-09-07 07:13:35 UTC (rev 18204) @@ -37,7 +37,7 @@ #endif #include <signal.h> -#include "roken.h" +#include <roken.h> /* * We would like to always use this signal but there is a link error Modified: branches/SAMBA_4_0/source/heimdal/lib/roken/strsep.c =================================================================== --- branches/SAMBA_4_0/source/heimdal/lib/roken/strsep.c 2006-09-07 04:52:06 UTC (rev 18203) +++ branches/SAMBA_4_0/source/heimdal/lib/roken/strsep.c 2006-09-07 07:13:35 UTC (rev 18204) @@ -38,7 +38,7 @@ #include <string.h> -#include "roken.h" +#include <roken.h> #ifndef HAVE_STRSEP Modified: branches/SAMBA_4_0/source/heimdal/lib/roken/strsep_copy.c =================================================================== --- branches/SAMBA_4_0/source/heimdal/lib/roken/strsep_copy.c 2006-09-07 04:52:06 UTC (rev 18203) +++ branches/SAMBA_4_0/source/heimdal/lib/roken/strsep_copy.c 2006-09-07 07:13:35 UTC (rev 18204) @@ -38,7 +38,7 @@ #include <string.h> -#include "roken.h" +#include <roken.h> #ifndef HAVE_STRSEP_COPY
