summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--xserver/configure6
-rw-r--r--xserver/configure.ac6
-rw-r--r--xserver/hw/xfree86/os-support/bsd/Makefile.am3
-rw-r--r--xserver/hw/xfree86/os-support/bsd/Makefile.in7
4 files changed, 19 insertions, 3 deletions
diff --git a/xserver/configure b/xserver/configure
index ef4a2d17e..7f1e10a04 100644
--- a/xserver/configure
+++ b/xserver/configure
@@ -30009,6 +30009,12 @@ _ACEOF
s390*)
GLX_ARCH_DEFINES="-D__GLX_ALIGN64"
;;
+ hppa*)
+ case $host_os in
+ *openbsd*) HPPA_VIDEO=yes
+ ;;
+ esac
+ ;;
esac
diff --git a/xserver/configure.ac b/xserver/configure.ac
index 42411b0d5..22a7f7264 100644
--- a/xserver/configure.ac
+++ b/xserver/configure.ac
@@ -402,6 +402,12 @@ case $host_cpu in
s390*)
GLX_ARCH_DEFINES="-D__GLX_ALIGN64"
;;
+ hppa*)
+ case $host_os in
+ *openbsd*) HPPA_VIDEO=yes
+ ;;
+ esac
+ ;;
esac
AC_SUBST(GLX_ARCH_DEFINES)
diff --git a/xserver/hw/xfree86/os-support/bsd/Makefile.am b/xserver/hw/xfree86/os-support/bsd/Makefile.am
index d274f2a80..a0dc9c734 100644
--- a/xserver/hw/xfree86/os-support/bsd/Makefile.am
+++ b/xserver/hw/xfree86/os-support/bsd/Makefile.am
@@ -43,7 +43,8 @@ ARCH_SOURCES = hp300_video.c \
endif
if HPPA_VIDEO
-ARCH_SOURCES = hppa_video.c
+ARCH_SOURCES = hppa_video.c\
+ $(srcdir)/../shared/ioperm_noop.c
endif
if I386_VIDEO
diff --git a/xserver/hw/xfree86/os-support/bsd/Makefile.in b/xserver/hw/xfree86/os-support/bsd/Makefile.in
index 9d3cd7405..d7bf3adae 100644
--- a/xserver/hw/xfree86/os-support/bsd/Makefile.in
+++ b/xserver/hw/xfree86/os-support/bsd/Makefile.in
@@ -73,7 +73,8 @@ am__libbsd_la_SOURCES_DIST = $(srcdir)/../shared/posix_tty.c \
@ALPHA_VIDEO_FALSE@@ARM_VIDEO_FALSE@@HP300_VIDEO_FALSE@@HPPA_VIDEO_FALSE@@I386_VIDEO_FALSE@@PPC_VIDEO_TRUE@am__objects_1 = ppc_video.lo \
@ALPHA_VIDEO_FALSE@@ARM_VIDEO_FALSE@@HP300_VIDEO_FALSE@@HPPA_VIDEO_FALSE@@I386_VIDEO_FALSE@@PPC_VIDEO_TRUE@ ioperm_noop.lo
@ALPHA_VIDEO_FALSE@@ARM_VIDEO_FALSE@@HP300_VIDEO_FALSE@@HPPA_VIDEO_FALSE@@I386_VIDEO_TRUE@am__objects_1 = i386_video.lo
-@ALPHA_VIDEO_FALSE@@ARM_VIDEO_FALSE@@HP300_VIDEO_FALSE@@HPPA_VIDEO_TRUE@am__objects_1 = hppa_video.lo
+@ALPHA_VIDEO_FALSE@@ARM_VIDEO_FALSE@@HP300_VIDEO_FALSE@@HPPA_VIDEO_TRUE@am__objects_1 = hppa_video.lo \
+@ALPHA_VIDEO_FALSE@@ARM_VIDEO_FALSE@@HP300_VIDEO_FALSE@@HPPA_VIDEO_TRUE@ ioperm_noop.lo
@ALPHA_VIDEO_FALSE@@ARM_VIDEO_FALSE@@HP300_VIDEO_TRUE@am__objects_1 = hp300_video.lo \
@ALPHA_VIDEO_FALSE@@ARM_VIDEO_FALSE@@HP300_VIDEO_TRUE@ ioperm_noop.lo
@ALPHA_VIDEO_FALSE@@ARM_VIDEO_TRUE@am__objects_1 = arm_video.lo \
@@ -658,7 +659,9 @@ noinst_LTLIBRARIES = libbsd.la
@HP300_VIDEO_TRUE@ARCH_SOURCES = hp300_video.c \
@HP300_VIDEO_TRUE@ $(srcdir)/../shared/ioperm_noop.c
-@HPPA_VIDEO_TRUE@ARCH_SOURCES = hppa_video.c
+@HPPA_VIDEO_TRUE@ARCH_SOURCES = hppa_video.c\
+@HPPA_VIDEO_TRUE@ $(srcdir)/../shared/ioperm_noop.c
+
@I386_VIDEO_TRUE@ARCH_SOURCES = i386_video.c
@PPC_VIDEO_TRUE@ARCH_SOURCES = ppc_video.c \
@PPC_VIDEO_TRUE@ $(srcdir)/../shared/ioperm_noop.c