From cfb5424768c749520c534f8c6d22161cee1daa53 Mon Sep 17 00:00:00 2001 From: Andrew Deason Date: Sat, 19 Feb 2011 21:14:11 -0600 Subject: [PATCH] HPUX: Fix osi_debug.c includes osi_debug.c was trying to include fcrypt.h and private_data.h. But the former is in the rx subdirectory, and the latter is in src/rxkad. So, specify a more complete path for fcrypt.h, and put src/rxkad in the include list for osi_debug.c so we can build again. Change-Id: I5754f56354f40bd3697ac286cb0820041fda0b00 Reviewed-on: http://gerrit.openafs.org/4024 Tested-by: BuildBot Tested-by: Andrew Deason Reviewed-by: Derrick Brashear --- src/afs/HPUX/osi_debug.c | 2 +- src/libafs/Makefile.common.in | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/afs/HPUX/osi_debug.c b/src/afs/HPUX/osi_debug.c index ed0f159ac..2448cb7d9 100644 --- a/src/afs/HPUX/osi_debug.c +++ b/src/afs/HPUX/osi_debug.c @@ -20,7 +20,7 @@ #include "afs_trace.h" #include "afs.h" #include "exporter.h" -#include "fcrypt.h" +#include #include "nfsclient.h" #include "private_data.h" #include "vice.h" diff --git a/src/libafs/Makefile.common.in b/src/libafs/Makefile.common.in index 00f533070..55c6eb840 100644 --- a/src/libafs/Makefile.common.in +++ b/src/libafs/Makefile.common.in @@ -612,6 +612,7 @@ osi_vm.o: $(TOP_SRCDIR)/afs/$(MKAFS_OSTYPE)/osi_vm.c $(CRULE_NOOPT) osi_vnodeops.o: $(TOP_SRCDIR)/afs/$(MKAFS_OSTYPE)/osi_vnodeops.c $(CRULE_NOOPT) +CFLAGS-osi_debug.o = -I${TOP_SRCDIR}/rxkad osi_debug.o: $(TOP_SRCDIR)/afs/$(MKAFS_OSTYPE)/osi_debug.c $(CRULE_OPT) osi_ioctl.o: $(TOP_SRCDIR)/afs/$(MKAFS_OSTYPE)/osi_ioctl.c -- 2.39.5