LINUX.ORG.RU

Сообщения KBAKEP

 

Новые драйверы для мат. плат от NVidia версии 1.0-0261.

Новости — Hardware and Drivers
Группа Hardware and Drivers

* Добавлен патч для ядра для поддержки nForce GART;

* Добавлен параметр "spdif_status" в драйвер звука для включения/выключения поддержки S/PDIF для совместимости;

* Ликвидирован баг в драйвере звука, который на плате с nForce от MSI использовал только два канала;

* Ликвидирован баг в драйвере звука, связанный с mmap, вызывавший зависание Quake III;

* Устранена проблема с remap_page_range() при сборке в Red Hat Linux 9;

* Устранена проблема с пересборкой SRPM в Red Hat Linux 9;

* Добавлены бинарные RPM для Red Hat Linux 9 и Mandrake Linux 9.1.

>>> Linux nForce Driver

KBAKEP
()

Драйверы для Matrox Parhelia для Linux.

Новости — Hardware and Drivers
Группа Hardware and Drivers

Поддерживаемые карты:
- Parhelia 128MB, Parhelia 256MB
- Millennium P650, Millennium P750
Поддерживаемые Xfree86 версии:
- 4.2.0
- 4.2.1
- 4.3.0
Поддерживаемые версии RedHat:
- 7.3
- 8.0
- 9.0
Поддерживаются:
- Bus mastering
- Direct access
Естественно, можно использовать 1, 2 или 3 монитора.

>>> Подробности

KBAKEP
()

AquaX темя для GNOME 2.

Форум — Desktop

Скачал я эту тему и скопировал в /usr/share/themes. Выбрал в настройках рабочего стола "Тема", далее "Показать в подробностях...", и там выбрал её в закладке "Элементы управления". А как теперь в закладках "Рамка окна" и "Значки" такое же проделать? Там она не выбирается. У меня только кнопки есть, рамка и др. от другой темы. Ссылка на источник, и там же скрин есть, где всё ОК: http://themes.freshmeat.net/projects/aquax-gtk2/?topic_id=923%2C958 Что делать?

KBAKEP
()

Драйверы для видеокарт от NVIDIA версии 43.63.

Новости — Hardware and Drivers
Группа Hardware and Drivers

Видимо были исправлены мелкие баги, которые наблюдались в версии 43.49, по-видимому с самыми последними релизами известных дистрибутивов Linux.

>>> Подробности

KBAKEP
()

Gaim с UTF-8 и ICQ в Windows. Как подружить?

Форум — Desktop

Поставил себе Gaim 0.61, система с UTF-8. Начал общаться с людьми по ICQ, а они в большинстве своём меня не понимают. Есть люди, которыйм хорошо понимают (у них в Capabilities есть ICQ UTF8), но я их не понимаю. Были случаи, кого и меня понимали, и я понимал людей, но потом спонтанно всё порпадало, т.е. непонятные закорючки. Никакой перекодировки, как в licq или GnomeICU, я не нашёл. Что делать с моей стороны, и что можно сделать с другой стороны?

KBAKEP
()

Обновились драйверы для nForce. Теперь 2.56.

Новости — Hardware and Drivers
Группа Hardware and Drivers

В новой версии добавлены следующие вещи:

В аудио драйвере добавлена поддержка SPDIF;

Обновлены бинарники для поддержки последних версий ядер в Red Hat Linux;

Теперь аудио драйвер является самодостаточным и не зависит от i810_audio драйвера;

Устранена проблема с аргументами компилятора между версиями gcc3.X и gcc2.X;

Изменён установочный скрипт с целью использования наименьшего из возможных чисел при перечислении сетевого и аудио устройств в modles.conf;

Добавлен раздел FAQ в release notes.

>>> Ссылка на драйверы

KBAKEP
()

Простая программа на Objective-C.

Форум — Development

Решил освоить этот язык. Вот моя конфигурация:

Reading specs from /usr/lib/gcc-lib/i686-pc-linux-gnu/3.2.1/specs Configured with: /var/tmp/portage/gcc-3.2.1-r6/work/gcc-3.2.1/configure --prefix=/usr --bindir=/usr/i686-pc-linux-gnu/gcc-bin/3.2 --includedir=/usr/lib/gcc-lib/i686-pc-linux-gnu/3.2.1/include --datadir=/usr/share/gcc-data/i686-pc-linux-gnu/3.2 --mandir=/usr/share/gcc-data/i686-pc-linux-gnu/3.2/man --infodir=/usr/share/gcc-data/i686-pc-linux-gnu/3.2/info --enable-shared --host=i686-pc-linux-gnu --target=i686-pc-linux-gnu --with-system-zlib --enable-languages=c,c++,ada,f77,objc,java --enable-threads=posix --enable-long-long --disable-checking --enable-cstdio=stdio --enable-clocale=generic --enable-__cxa_atexit --enable-version-specific-runtime-libs --with-gxx-include-dir=/usr/lib/gcc-lib/i686-pc-linux-gnu/3.2.1/include/g++-v3 --with-local-prefix=/usr/local --enable-shared --enable-nls --without-included-gettext Thread model: posix gcc version 3.2.1 20021207 (Gentoo Linux 3.2.1-20021207)

Содержимое main.m #import <objc/objc.h> #import <objc/Object.h> #import "MyClass.h"

int main() { MyClass *anObject;

anObject = [MyClass alloc]; //[anObject sayHello]; return 0; }

Содержимое MyClass.h @interface MyClass : Object { } - sayHello; @end

Содержимое MyClass.m #import "MyClass.h"

@implementation MyClass : Object { } - sayHello { printf("Hello, World!\n"); } @end

Линуовщик выдаёт ошибку: main.m:1:2: warning: #import is obsolete, use an #ifndef wrapper in the header file /tmp/ccgoumlF.o(.text+0x19): In function `main': : undefined reference to `objc_get_class' /tmp/ccgoumlF.o(.text+0x2b): In function `main': : undefined reference to `objc_msg_lookup' /tmp/ccgoumlF.o(.text+0x57): In function `_GLOBAL__I_main': : undefined reference to `__objc_exec_class' /tmp/ccgoumlF.o(.data+0x34): undefined reference to `__objc_class_name_MyClass' collect2: ld returned 1 exit status

KBAKEP
()

проблемы с компиляцией программ компиляторами icc, bc++ в системе с gcc 3.2.1.

Форум — Development

Стоит Gentoo Linux, он полность откомпилирован gcc 3.2.1 (апгрейд/переход произошёл около месяца назад). И перестали компилироваться все проги компилятором icc 6.0 (до это всё было ОК). Поставил сейчас Kylix 3 Open Version, и bc++ имеет те же проблемы. Не компилируются все проги. Даже эта:

#include <iostream.h>

main() { cout << "Hello, World!\n"; return 0; }

icc выдаёт следующее: test.C /usr/include/stdio.h(44): error #77: this declaration has no storage class or ty pe specifier __BEGIN_NAMESPACE_STD ^

/usr/include/stdio.h(46): error: expected a ";" typedef struct _IO_FILE FILE; ^

/usr/include/stdio.h(47): error: identifier "__END_NAMESPACE_STD" is undefined __END_NAMESPACE_STD ^

/usr/include/stdio.h(51): error: identifier "FILE" is undefined __USING_NAMESPACE_STD(FILE) ^

/usr/include/stdio.h(62): error: expected a "{" typedef struct _IO_FILE __FILE; ^

/usr/include/wchar.h(76): error: identifier "wint_t" is undefined wint_t __wch; ^ и т.д.

bc++ пишет чуть иначе, но то же: Borland C++ 5.7 Open Edition Copyright (c) 1987, 2002 Borland test.C: Error E2141 /usr/include/stdio.h 46: Declaration syntax error Error E2141 /usr/include/stdio.h 51: Declaration syntax error Error E2141 /usr/include/stdio.h 88: Declaration syntax error Error E2141 /usr/include/stdio.h 142: Declaration syntax error Error E2141 /usr/include/stdio.h 152: Declaration syntax error Error E2141 /usr/include/stdio.h 158: Declaration syntax error Error E2141 /usr/include/stdio.h 181: Declaration syntax error Error E2141 /usr/include/stdio.h 200: Declaration syntax error Error E2147 /usr/include/stdio.h 202: 'FILE' cannot start a parameter declaration Error E2141 /usr/include/stdio.h 207: Declaration syntax error Error E2141 /usr/include/stdio.h 219: Declaration syntax error Error E2141 /usr/include/stdio.h 222: Declaration syntax error Error E2141 /usr/include/stdio.h 250: Declaration syntax error Error E2141 /usr/include/stdio.h 274: Declaration syntax error Error E2147 /usr/include/stdio.h 278: 'FILE' cannot start a parameter declaration Error E2141 /usr/include/stdio.h 285: Declaration syntax error Error E2147 /usr/include/stdio.h 289: 'FILE' cannot start a parameter declaration Error E2141 /usr/include/stdio.h 295: Declaration syntax error Error E2147 /usr/include/stdio.h 304: 'FILE' cannot start a parameter declaration Error E2141 /usr/include/stdio.h 315: Declaration syntax error Error E2141 /usr/include/stdio.h 349: Declaration syntax error Error E2141 /usr/include/stdio.h 379: Declaration syntax error Error E2147 /usr/include/stdio.h 382: 'FILE' cannot start a parameter declaration Error E2141 /usr/include/stdio.h 394: Declaration syntax error Error E2147 /usr/include/stdio.h 400: 'FILE' cannot start a parameter declaration Error E2228 /usr/include/stdio.h 400: Too many error or warning messages *** 26 errors in Compile ***

Задал вопрос на их сайте, но разговор зашёл в тупик: http://forums.gentoo.org/viewtopic.php?t=27474&highlight=icc

Кто что может сказать?

KBAKEP
()

Новые драйверы для Matrox Parhelia для Linux.

Новости — Hardware and Drivers
Группа Hardware and Drivers

Matrox с завидным постоянством выпускает новые версии драйверов для своего последнего детища. На этот раз версия драйверов 0.2.1 от 18 ноября 2002 года.

>>> Подробности

KBAKEP
()

Вышли унифицированные драйверы версии 2.4.3 от ATi для карт на чипах Radeon.

Новости — Hardware and Drivers
Группа Hardware and Drivers

ATi выпустила в свет унифицированные драйверы для своих карт:
RADEON&#8482; 8500,
RADEON&#8482; 8500LE,
ALL-IN-WONDER&#174; RADEON&#8482; 8500DV,
RADEON&#8482; 9000 PRO,
RADEON&#8482; 9500 PRO,
RADEON&#8482; 9700 PRO,
ALL-IN-WONDER&#174; 9700 PRO
FIRE GL&#8482; семейство для рабочих станций.

Новые драйверы поддерживают OpenGL&#174; 1.4 с 2.0 расширениями.

Драйверы были написаны на основе драйверов для FireGL X1, что даёт основания полагать, что они будут стабильными, и достаточно быстрыми.

>>> Пресс-релиз

KBAKEP
()

Обновление драйвера для Matrox Parhelia 512.

Новости — Hardware and Drivers
Группа Hardware and Drivers

17 октября вышла новая версия 0.2.0 драйверов для Matrox Parhelia 512. Пока только 2D, но прогресс есть.

>>> Linux driver for Matrox Parhelia 512. BETA 0.2.0

KBAKEP
()

RSS подписка на новые темы