Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!

Bug 131587

Summary: speakup doesn't compile without procfs
Product: Gentoo Linux Reporter: Toralf Förster <toralf>
Component: Current packagesAssignee: Daniel Drake (RETIRED) <dsd>
Status: RESOLVED WONTFIX    
Severity: normal CC: kernel
Priority: High    
Version: unspecified   
Hardware: All   
OS: Linux   
Whiteboard:
Package list:
Runtime testing required: ---
Attachments: kernel config
log of make process

Description Toralf Förster gentoo-dev 2006-04-28 09:47:42 UTC
After a "make randconfig" I got this :

  CC [M]  drivers/char/mwave/tp3780i.o
  CC [M]  drivers/char/mwave/3780i.o
  LD [M]  drivers/char/mwave/mwave.o
  CC      drivers/char/speakup/speakup.o
drivers/char/speakup/speakup.c: In function `speakup_bits':
drivers/char/speakup/speakup.c:2431: error: `pb_edit' undeclared (first use in this function)
drivers/char/speakup/speakup.c:2431: error: (Each undeclared identifier is reported only once
drivers/char/speakup/speakup.c:2431: error: for each function it appears in.)
drivers/char/speakup/speakup.c:2434: error: `edit_bits' undeclared (first use in this function)
make[3]: *** [drivers/char/speakup/speakup.o] Error 1
make[2]: *** [drivers/char/speakup] Error 2
make[1]: *** [drivers/char] Error 2
make: *** [drivers] Error 2

n22 /mnt/ramdisk # emerge info
Portage 2203-svn (default-linux/x86/2006.0, gcc-3.4.5, glibc-2.3.6-r3, 2.6.16-gentoo-r3 i686)
=================================================================
System uname: 2.6.16-gentoo-r3 i686 Intel(R) Pentium(R) M processor 1700MHz
Gentoo Base System version 1.6.14
ccache version 2.3 [enabled]
dev-lang/python:     2.4.2
sys-apps/sandbox:    1.2.12
sys-devel/autoconf:  2.13, 2.59-r7
sys-devel/automake:  1.4_p6, 1.5, 1.6.3, 1.7.9-r1, 1.8.5-r3, 1.9.6-r1
sys-devel/binutils:  2.16.1
sys-devel/libtool:   1.5.22
virtual/os-headers:  2.6.11-r2
ACCEPT_KEYWORDS="x86"
AUTOCLEAN="yes"
CBUILD="i686-pc-linux-gnu"
CFLAGS="-O2 -march=pentium-m -fomit-frame-pointer -pipe"
CHOST="i686-pc-linux-gnu"
CONFIG_PROTECT="/etc /usr/kde/2/share/config /usr/kde/3.4/env /usr/kde/3.4/share/config /usr/kde/3.4/shutdown /usr/kde/3/share/config /usr/lib/X11/xkb /usr/share/config /var/qmail/control"
CONFIG_PROTECT_MASK="/etc/eselect/compiler /etc/gconf /etc/revdep-rebuild /etc/terminfo /etc/env.d"
CXXFLAGS="-O2 -march=pentium-m -fomit-frame-pointer -pipe"
DISTDIR="/usr/portage/distfiles"
FEATURES="autoconfig ccache distlocks sandbox sfperms strict"
GENTOO_MIRRORS="http://pandemonium.tiscali.de/pub/gentoo/ http://213.186.33.37/gentoo-distfiles/ http://213.186.33.38/gentoo-distfiles/ http://ftp.belnet.be/mirror/rsync.gentoo.org/gentoo/"
LINGUAS="de en"
MAKEOPTS="-j2"
PKGDIR="/usr/portage/packages"
PORTAGE_TMPDIR="/var/tmp"
PORTDIR="/usr/portage"
SYNC="rsync://rsync.de.gentoo.org/gentoo-portage"
USE="x86 X aac acpi alsa apache2 arts audiofile avi berkdb bitmap-fonts bzip2 cdr cli crypt cups curl dri dvd emboss encode exif expat fam ffmpeg font-server foomaticdb fortran gd gdbm gif glut gpm gstreamer gtk gtk2 idn imagemagick imlib ipv6 isdnlog jai java javascript jimi joystick jpeg junit kde lcms libg++ libwww live logrotate mad mbox mhash mikmod mmx mmxext mng motif mp3 mpeg mysql ncurses nls nptl nsplugin ogg opengl oss pam pcre pdflib perl php png pppd python qt quicktime readline real reflection rtc samba sdl session slp snmp spell spl sse sse2 ssl subversion tcltk tcpd tiff truetype truetype-fonts type1-fonts udev unicode usb userlocales vorbis win32codecs xine xml xml2 xorg xv xvid zlib video_cards_ati input_devices_keyboard input_devices_mouse linguas_de linguas_en userland_GNU kernel_linux elibc_glibc"
Unset:  ASFLAGS, CTARGET, INSTALL_MASK, LANG, LC_ALL, LDFLAGS, PORTDIR_OVERLAY
Comment 1 Toralf Förster gentoo-dev 2006-04-28 09:48:09 UTC
Created attachment 85670 [details]
kernel config
Comment 2 Carsten Lohrke (RETIRED) gentoo-dev 2006-04-28 10:37:07 UTC
*** Bug 131588 has been marked as a duplicate of this bug. ***
Comment 3 Toralf Förster gentoo-dev 2006-04-28 15:23:43 UTC
Created attachment 85707 [details]
log of make process
Comment 4 Jakub Moc (RETIRED) gentoo-dev 2006-05-01 02:04:42 UTC
*** Bug 131873 has been marked as a duplicate of this bug. ***
Comment 5 Cory Grunden 2007-02-13 21:18:58 UTC
Anyone see a problem here? ;)

+struct st_proc_var spk_proc_vars[] = {
+	 { VERSION, version_read_proc, 0, 0 },
+	 { SILENT, 0, silent_write_proc, 0 },
+	 { CHARS, chars_read_proc, chars_write_proc, 0 },
+	 { SYNTH, synth_read_proc, synth_write_proc, 0 },
+	 { KEYMAP, keys_read_proc, keys_write_proc, 0 },
+	 { PUNC_SOME, bits_read_proc, bits_write_proc, 1 },
+	 { PUNC_MOST, bits_read_proc, bits_write_proc, 2 },
+	 { PUNC_ALL, bits_read_proc, 0, 3 },
+	 { DELIM, bits_read_proc, bits_write_proc, 4 },
+	 { REPEATS, bits_read_proc, bits_write_proc, 5 },
+	 { EXNUMBER, bits_read_proc, bits_write_proc, 6 },
+	 { CHARTAB, chartab_read_proc, chartab_write_proc, 0 },
+	{ -1, 0, 0, 0 }
+};
+
Comment 6 Cory Grunden 2007-02-13 21:23:54 UTC
Anyone see a problem here? ;)

+struct st_proc_var spk_proc_vars[] = {
+	 { VERSION, version_read_proc, 0, 0 },
+	 { SILENT, 0, silent_write_proc, 0 },
+	 { CHARS, chars_read_proc, chars_write_proc, 0 },
+	 { SYNTH, synth_read_proc, synth_write_proc, 0 },
+	 { KEYMAP, keys_read_proc, keys_write_proc, 0 },
+	 { PUNC_SOME, bits_read_proc, bits_write_proc, 1 },
+	 { PUNC_MOST, bits_read_proc, bits_write_proc, 2 },
+	 { PUNC_ALL, bits_read_proc, 0, 3 },
+	 { DELIM, bits_read_proc, bits_write_proc, 4 },
+	 { REPEATS, bits_read_proc, bits_write_proc, 5 },
+	 { EXNUMBER, bits_read_proc, bits_write_proc, 6 },
+	 { CHARTAB, chartab_read_proc, chartab_write_proc, 0 },
+	{ -1, 0, 0, 0 }
+};
+(In reply to comment #5)
> Anyone see a problem here? ;)
> 
> +struct st_proc_var spk_proc_vars[] = {
> +        { VERSION, version_read_proc, 0, 0 },
> +        { SILENT, 0, silent_write_proc, 0 },
> +        { CHARS, chars_read_proc, chars_write_proc, 0 },
> +        { SYNTH, synth_read_proc, synth_write_proc, 0 },
> +        { KEYMAP, keys_read_proc, keys_write_proc, 0 },
> +        { PUNC_SOME, bits_read_proc, bits_write_proc, 1 },
> +        { PUNC_MOST, bits_read_proc, bits_write_proc, 2 },
> +        { PUNC_ALL, bits_read_proc, 0, 3 },
> +        { DELIM, bits_read_proc, bits_write_proc, 4 },
> +        { REPEATS, bits_read_proc, bits_write_proc, 5 },
> +        { EXNUMBER, bits_read_proc, bits_write_proc, 6 },
> +        { CHARTAB, chartab_read_proc, chartab_write_proc, 0 },
> +       { -1, 0, 0, 0 }
> +};
> +
> 

Nevermind, I miss read this.
Comment 7 Daniel Drake (RETIRED) gentoo-dev 2007-06-23 02:06:38 UTC
closing as speakup has been dropped from future kernels