diff options
author | Jeremy Katz <katzj@redhat.com> | 2006-02-22 20:00:32 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2006-02-22 20:00:32 +0000 |
commit | 44eb3dd9f9488ebe6f214a328a8c55d7d3c73cf8 (patch) | |
tree | adf919bcfc3d3dfc4d1297a350a6b7ee307aceca /isys/isys.c | |
parent | da4e01fa60d0b0b0844e194e8cde5d32800b56d1 (diff) | |
download | anaconda-44eb3dd9f9488ebe6f214a328a8c55d7d3c73cf8.tar.gz anaconda-44eb3dd9f9488ebe6f214a328a8c55d7d3c73cf8.tar.xz anaconda-44eb3dd9f9488ebe6f214a328a8c55d7d3c73cf8.zip |
2006-02-22 Jeremy Katz <katzj@redhat.com>
* lang-table: Set all previously bterm using languages to "none"
for the fact that we can't handle them in text-mode anymore
* textw/language_text.py (LanguageWindow.__call__): Remove bterm
special-casing.
* text.py (InstallInterface.run): Likewise.
* loader2/lang.c (setupLanguage): Likewise.
* language.py (Language.fixLang): No more "bterm" font
* stubs/unicode-lite.c: Don't require wlite
* stubs/Makefile: Don't link against wlite
* loader2/Makefile: No more linking to bterm here either
* isys/lang.c: Remove bterm support code.
* isys/lang.h: And declaration.
* isys/Makefile (LOADLIBES): No more linking to bterm
* isys/isys.c (start_bterm): Remove this
* anaconda.spec (BuildPreReq): Bye-bye bogl
Diffstat (limited to 'isys/isys.c')
-rw-r--r-- | isys/isys.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/isys/isys.c b/isys/isys.c index ac16705cf..bb1073200 100644 --- a/isys/isys.c +++ b/isys/isys.c @@ -107,7 +107,6 @@ static PyObject * doGetPageSize(PyObject * s, PyObject * args); static PyObject * py_bind_textdomain_codeset(PyObject * o, PyObject * args); static PyObject * getLinkStatus(PyObject * s, PyObject * args); static PyObject * hasIdeRaidMagic(PyObject * s, PyObject * args); -static PyObject * start_bterm(PyObject * s, PyObject * args); static PyObject * py_getDasdPorts(PyObject * s, PyObject * args); static PyObject * py_isUsableDasd(PyObject * s, PyObject * args); static PyObject * py_isLdlDasd(PyObject * s, PyObject * args); @@ -167,7 +166,6 @@ static PyMethodDef isysModuleMethods[] = { { "bind_textdomain_codeset", (PyCFunction) py_bind_textdomain_codeset, METH_VARARGS, NULL}, { "getLinkStatus", (PyCFunction) getLinkStatus, METH_VARARGS, NULL }, { "hasIdeRaidMagic", (PyCFunction) hasIdeRaidMagic, METH_VARARGS, NULL }, - { "startBterm", (PyCFunction) start_bterm, METH_VARARGS, NULL }, { "getDasdPorts", (PyCFunction) py_getDasdPorts, METH_VARARGS, NULL}, { "isUsableDasd", (PyCFunction) py_isUsableDasd, METH_VARARGS, NULL}, { "isLdlDasd", (PyCFunction) py_isLdlDasd, METH_VARARGS, NULL}, @@ -1474,12 +1472,6 @@ static PyObject * hasIdeRaidMagic(PyObject * s, PyObject * args) { #endif } -static PyObject * start_bterm(PyObject * s, PyObject * args) { - if (!PyArg_ParseTuple(args, "")) return NULL; - - return Py_BuildValue("i", isysStartBterm()); -} - static PyObject * doProbeBiosDisks(PyObject * s, PyObject * args) { if (!PyArg_ParseTuple(args, "")) return NULL; |