summaryrefslogtreecommitdiff
path: root/unsorted
diff options
context:
space:
mode:
authorThomas Schwinge <tschwinge@gnu.org>2007-09-04 16:33:02 +0200
committerThomas Schwinge <tschwinge@gnu.org>2007-09-04 16:33:02 +0200
commit9dc7ac7d2a69bd0b0a8176daa3e5e03d9515d11d (patch)
treef28af6512615d0361365de59f5c1dc12e047b13a /unsorted
parent9d1db65a9ea97f852a845b8e2ef2b0d4e85e027b (diff)
Empty `Test/'.
Diffstat (limited to 'unsorted')
-rw-r--r--unsorted/OskitMachTest.mdwn24
-rw-r--r--unsorted/OskitMachTest/gnumach2-configure-patch1.diff79
2 files changed, 103 insertions, 0 deletions
diff --git a/unsorted/OskitMachTest.mdwn b/unsorted/OskitMachTest.mdwn
new file mode 100644
index 00000000..24cf9b6f
--- /dev/null
+++ b/unsorted/OskitMachTest.mdwn
@@ -0,0 +1,24 @@
+# <a name="Proposal_to_change_configure_scr"> </a> Proposal to change configure script for GNUmach 2.0
+
+Here are my proposed changes to the GNU Mach 2.0 configure script, configure.in.
+
+## <a name="_with_oskit_"> --with-oskit\* </a>
+
+The first one is basically what Daniel Wagner once suggested. A way for builders to better provide the path of the OSKit, e.g., `--with-oskit=/my/bisarre/path`.
+
+This patch also contains a minor "fix": detect presence of the OSKit before trying to check for a correct version number of the same. It also updates the required version number to be, at the very least, the 2001 release. This because we need the softirq changes introduced therein.
+
+With the patch a configure line like below is entirely possible on a Debian system with the i386-gnu-mig deb package installed.
+
+ crash@isengard:~/Projects/build/oskit-mach$ ../../oskit-mach/configure --host=i386-gnu \
+ --prefix=/usr/hurd --with-oskit=/usr/hurd
+
+## <a name="Drivers_move_Makefile_gt_configu"> Drivers move Makefile ==&gt; configure </a>
+
+The second patch set, currently worked on, is to move the requested drivers from the Makefile to the configure script in the form of `--enable-freebsd-DRIVER` and `--enable-linux-DRIVER`.
+
+This will remove the current `make kernel-ide-ethernet_tulip` combo and introduce a more common `make kernel` scheme.
+
+-- [[Main/JoachimNilsson]] - 21 Jun 2003
+
+* [[ATTACHURLgnumach2-configure-patch1diff]]: Adds --with-oskit and "fixes" a bug.
diff --git a/unsorted/OskitMachTest/gnumach2-configure-patch1.diff b/unsorted/OskitMachTest/gnumach2-configure-patch1.diff
new file mode 100644
index 00000000..cb8472ad
--- /dev/null
+++ b/unsorted/OskitMachTest/gnumach2-configure-patch1.diff
@@ -0,0 +1,79 @@
+Index: configure.in
+===================================================================
+RCS file: /cvsroot/hurd/gnumach/configure.in,v
+retrieving revision 1.17
+diff -u -r1.17 configure.in
+--- configure.in 6 Mar 2003 03:57:01 -0000 1.17
++++ configure.in 21 Jun 2003 17:04:36 -0000
+@@ -61,6 +61,34 @@
+ [test "x$enableval" = xno ||
+ AC_DEFINE(FPE, 1, [Enable software FPU emulator for machines with no FPU.])])
+
++# Sometimes people don't use traditional places to put the OSKit in.
++# To still be nice we give these people a way of telling us where
++# they have put it.
++AC_ARG_WITH(oskit-includes,
++[ --with-oskit-includes Specify location of oskit headers],[
++CFLAGS="$CFLAGS -I$withval"
++CPPFLAGS="$CPPFLAGS -I$withval"
++ASFLGAS="$ASFLAGS -I$withval"
++])
++
++# These two will overwrite any previous setting of OSKIT_LIBDIR,
++# but since the user has told us to do so we obey.
++AC_ARG_WITH(oskit-libs,
++[ --with-oskit-libs Specify location of oskit libs],[
++LDFLAGS="$LDFLAGS -L$withval"
++OSKIT_LIBDIR="$withval/oskit"
++])
++
++AC_ARG_WITH(oskit,
++[ --with-oskit Specify prefix for oskit files],[
++CFLAGS="$CFLAGS -I$withval/include"
++CPPFLAGS="$CPPFLAGS -I$withval/include"
++ASFLAGS="$ASFLAGS -I$withval/include"
++LDFLAGS="$LDFALGS -I$withval/lib"
++OSKIT_LIBDIR="$withval/lib/oskit"
++])
++AC_SUBST(ASFLAGS)
++
+ #
+ # Programs
+ #
+@@ -76,8 +104,20 @@
+
+ AC_CHECK_PROG(MBCHK, mbchk, mbchk, :)
+
++# Check for Flux Group's OSKit
++# If not in standard paths to CC the user needs to
++# supply a --with-oskit* or we need to evaluate the
++# OSKIT_LIBDIR variable *before* we check for the
++# correct version below.
++AC_CHECK_HEADERS(oskit/version.h,,
++ [AC_MSG_ERROR([cannot find oskit/version.h, where are the OSKit includes?])])
++
+ # Check oskit version.
+-NEEDED_OSKIT_VERSION=19991121
++# 19991121 was the old version we relied on, but since
++# the addition of softirqs to both the OSKit, in version
++# 20010214, and handling therof by Daniel Wagner in
++# GNU Mach, we now rely on 20010214.
++NEEDED_OSKIT_VERSION=20010214
+ AC_REQUIRE_CPP()
+ AC_MSG_CHECKING([for oskit version >= ${NEEDED_OSKIT_VERSION}])
+ AC_CACHE_VAL(gnumach_cv_oskit_version_${NEEDED_OSKIT_VERSION}, [
+Index: Makefile.in
+===================================================================
+RCS file: /cvsroot/hurd/gnumach/Makefile.in,v
+retrieving revision 1.38
+diff -u -r1.38 Makefile.in
+--- Makefile.in 6 Mar 2003 04:06:25 -0000 1.38
++++ Makefile.in 21 Jun 2003 17:04:36 -0000
+@@ -47,6 +47,7 @@
+
+ CFLAGS = @CFLAGS@
+ LDFLAGS = @LDFLAGS@
++ASFLAGS = @ASFLAGS@
+ SMP_LIBS = @SMP_LIBS@
+
+ all: