Jump to content

griptypethyne

Members
  • Posts

    79
  • Joined

  • Last visited

Everything posted by griptypethyne

  1. I am runing MDK10.1. I successfully installed an ethernet card and was able to talk to the setup page on my new adsl modem. The adsl link is not yet connected so that is as far as I could go, but that is not the reason for my post. I could also run kppp and connect to the internet. While experimenting I seem to have done some damage to my system (-; When I boot, linux hangs at "Bringing up interface ppp0". If I do an interactive boot and say no to ppp0 the system seems to load normally. I can then use kppp to access the internet. I can no longer access the adsl modem. ifconfig ppp0 give "Device not found" If I go into MCC ppp0 is listed as a device. If I try and change settings (eg turn off load at boot) it does not save the settings and sometimes hangs (I really like ctrl-alt-esc (-; ). I went into MCC and reloaded the ppp packages and dhcp but that has not solved the problem. Any suggestions please?
  2. Thanks. That seems to have worked. I did try the command before ( I did do some research before asking the question on this forum (-; ) but I did not think that it had worked. What confused me was that if this command is successful it simply returns to the prompt. I have since re-entered the command, deliberately mis-spelling the module name. I received a "module not found message", indirectly confirming that 8139too had been found. I have now also run ifconfig, modinfo, lsmod and mii-tool and these all suggest that the ethernet interface is ready. If so, that was a lot easier than installing a winmodem (-;
  3. I have run ls /lib/modules/`uname -r`/kernel/drivers/net/ and found a file 8139too.ko.gz which is presumably what I want. I can gunzip this fil but the what next? Where do I place the uncompressed file? What command do I run ti install the module?
  4. I am running MDK10.1 and kernel 2.6.8. I have installed a Realtek Semiconductor Co., Ltd. RTL-8139/8139C/8139C+ (rev 10) ethernet card. I am running MDK10.1 and kernel 2.6.8. I have discovered that I need to install module 8139too. If I use modprope I cannot find it, although I may have used the wrong command syntax. The card came with a driver on floppy but the Makefile is configured for the 2.4 kernel and will not compile. ISTM that there are several possiibilities: - the module reallyis on my system but I am not looking for it correctly. - I can download a package that will compile with the 2.6.8 kernel. - I can modify the driver Makefile. - I can download a file 8139too and add it to my system. Any help would be appreciated. My broadband connection should be installed in a few days - fortunately I still have a bootable XP partition and I have already checked that XP recognises the ethernet card (-;
  5. wxGTK 2.6 has been released. I have issued version 2 of my notes on compiling Proximodo. Version 2 explains how to compile Proximodo with wxGTK 2.6 and GTK2. compile_proximodo_mdk101_v2.txt
  6. Thanks. That was the solution. To be specific - When I added -static to the link rule the linker tried to make *all* libraries static. Not only was this not what I wanted but I would have had to install the -static- versions of every library. I added --disable-share to wxGTK ./configure to create a static version of wxGTK. I then compiled and linked the program (Proximodo) without the --static parmeter. This gave me what I wanted - the wxGTK2.6 libraries linked statically and all other libraries (including GTK2 ) linked dynamically. The reason for doing it this way is that I was trying to create a Proximodo package. Proximodo uses wxGTK2.6 which has just been released, so it will probably be a while before binaries are available for most distributions. Proximodo also uses GTK2 (version 2.4.9 in my case) but I think that binary packages should be available for most distributions. For the record the Proximodo compile was successful and I have prepared a package that should run on most distributions. So far it has been tested on my PC only so I have no idea if it will run on another machine (-; I am hoping that the build will be include in the 0.2.4 release of Proximodo. PS If anyone would like to test the package for me please contact me and I will send it to you. (Package size 1.5MB).
  7. I have successfully linked a program with dynamic libraries. I now want to link the same program with statically. If I use the rule $(PROXIMODO): $(OBJ) $(CC) -o $@ $(OBJ) $(WXLIB) the program links with dynamic libraries. If I use the rule $(PROXIMODO): $(OBJ) $(CC) -static -o $@ $(OBJ) $(WXLIB) I receive the following error message: /usr/bin/ld: cannot find -lwx_gtk2_xrc-2.6 collect2: ld returned 1 exit status -lwx_gtk2_xrc-2.6 is the first library in the library list. I have done some Google searches but am stuck. Can snyone suggest what the problem might be?
  8. Over the past few months I have posted several queries as I struggled to compile Proximodo on MDK10.1. My first successful compile took nearly three months. Now I can edit a source file, compile, link and run Proximodo in a few minutes I have attached a HOW TO explaining how to compile Proximodo. As an aside, I have just been reading another thread that mentioned -devel versions of libraries. It is now obvious to me now - but wasn't for a long time - that if you are compiling from source you must have the -devel versions of dependant libraries because the compiler will need the header files. Now that I have Proximodo running I have made a permanent change to Linux. It is several weeks since I last booted to XP and I cannot think of any reason why I will need to do so in the near future. It has been a long and, at times, frustrating journey. It is a year since I went into my local electronics retailer and purchased my first MDK distro CD for $2. I think that I have graduated from the newbie class of '04 B) Compile_Proximodo_mdk101.txt
  9. Problem solved! I did what I should have done at the start. I applied the RTFM principle, went to the GNU site and looked up the official Bash documentation. read -r Line treats \ as a normal rather than an escape character. It is interesting what you discover when you read the complete documentation B) . For example -d delim specifies that delim be used to terrminate the input line rather than newline. I am sure that that could be useful somewhere ;)
  10. I will try this as well. I am still coming to grips with the Bash syntax. cat < backslash.txt is a command. Therefore could the test= line also be written using backquotes: test=`cat < backslash.txt` or does that have a different meaning?
  11. Thanks for the quick replies. I am converting Proxoimitron .cfg files to Proximodo filters.txt format. Until I started this project the longest script I had written was three or four lines so I am ging through a steep learning curve. I have not yet considred using awk. I am aware of its existance but first I want to learn to write bash scripts and use regular expressions (-; I have carried out two tests: #exec < $backslashtest #read Line echo line This removed one \. I then tried the CAT example and it did not remove any \ Therefore I have two options - either use cat instead of read or use sed to insert an extra \.
  12. I am writing a Bash script to convert a text file from one format to another. The input file makes extensive use of the "\" character. I want to retain these characters unchanged. As far as I can tell the "\" is acted upon as soon as a line is read from a file. This means that I do not get the opportunity to escape it or temporarily replace it with another character. One solution is to use a text editor to replace the "\" with a temporary character, run the script and then use the editor to replace the "\". Howver this is a messy way of solving the problem. Is there some way I can tell Bash to ignore "\" as an escape character? Maybe I can run sed at the beginning of and end of the script?
  13. Thanks for that. The problem is that I need the development version (ie libraries + header files) and I could not see one on that site. In desperation I used urpmi to install wxgtk-devel-2.5.1. It did not solve the Proximodo compile problem. In frustration I then repeated, yet again, the compile process for wxGTK 2.5.3 and left the room. When I came back wxGTK 2.5.3 was installed! I do not know if the two events are related. I am not confident that I could repeat the install. By looking at the ./configure and make install messages, looking at config.log and running wx-config I am 99% confident that wxGTK 2.5.3 is installed. I then tried to compile Proximodo. All .cpp files now compild. Unfortunately the linker goes crazy and generates screenfuls of eror messages. It seems that I have a library problem.
  14. libgtk+-1.2.... is installed. . gtk-config --version returns 1.2.10. I appear to have wxGTK.....2.5.1 (not development version) installed. I went into rpmdrake and found it in the Delete Packages section. I assume that to compile wxWidgets I need the development version of gtk? My urpmi sources do have wxGTK development version 2.5.1. I have not installed it because Proximodo requires >=2.5.3. I wonder if the micro number really matters. I am tempted to try it. I have discovered that I need to add the parameter --disable-gtk2 to ./configure i.e. ./configure --with-gtk enable-gtk --disable-gtk2 The gtk include files are in usr/include/gtk-1.2/gtk which is not in the SEARCH_INCLUDE list in the configure script. I therefore run export CFLAGS=<result of gtk-config --cflags> Currently the gtk test program in ./configure generates syntax errors such as conftest.c: In function `main': conftest.c:81: error: syntax error before ')' token The config.log file also lists mspack.h as not found. Sorry if the above is disjointed but I seem to have been going around in circles. I hope that it gives you some clues about what I am doing wrong or what I should check next. Thanks
  15. I have homed in on my problem and can now be more specific. I hope that means that someone will reply :D I cd to the wxWidgets directory and ./configure --with-gtk --enable--gtk ./configure fails because the gtk test program does not run. The reason for the latter is that it cannot find gtk.h. gtk-config --cflags gives -I/usr/include/gtk-1.2 -I/usr/include/glib-1.2 -I/usr/lib/glib/include -I/usr/X11R6/include Checking the wxWidgets config.log file shows that the test program specifies #include <gtk/gtk.h> Therefore I assume that the compiler will look for /usr/include/gtk-1.2/gtk/gtk.h A file search locates /usr/include/gtk-1.2/gtk/gtk.h The comand used to compile the test program is gcc -o conftest -D_FILE_OFFSET_BITS=64 -D_LARGE_FILES conftest.c >&5 The --cflags are not passed to the compiler. Can someone help me please
  16. I a still interested in compiling wxWidgets --with-gtk. However, in frustration I tried ./configure --with-x11 and wxWidgets compiled. I was then able to compile and run Proximodo. There a a few minor problems with text on the GUI. I wonder if the problems will be fixed by compiling wxWidgets --with-gtk? :D :
  17. In order to compile a program called Proximodo I need wxWidgets >= 2.5.3, which in turn needs gtk >= 1.2.3. I am running MDK10.1. I tried installing libgtk+2.0_0-devel-2.4.9-9mdk with rpmdrake but it would not install as two freetype6 packages had bad mdsums. I then successfully installed version 1.2.10 of gtk using rpmdrake. I have located and downloaded wxAll-2.5.3.tar.gz and have unzipped it. When I cd to the wxWidgets directory and enter ./configure --with-gtk --enable-gtk2 (parameters from another forum) I receive a message saying that gtk is not installed correctly. It recommends that I run gtk-configure --libs and enter the path into LD-LIBRARY-PATH. I run gtk-configure and get -L/usr/X11R6/lib -lgtk -lgdk -rdynamic -lgmodule -lglib -ldl -lXi -lXext -lX11 -lm I am not sure how to interpret the above. Finally, when I do a file search I can find the gtk 1.2 header files, but not the library files. Please, can anyone help me? Everything else in Linux is set up how I want it (after nearly 12 months of at times frustrating work) and once I have Proximodo running I will be able to delete my Windows partition (-; [moved from Software by spinynorman]
  18. About nine months ago when I installed 9.1 (and did not know what I was doing :D ) I ended up with a swap partition. A few days ago I upgraded to 10.1, doing a clean install. This included increasing the size of the Linux partition and deleting the 9.2 swap partition. During the 10.1 install I did not read anything about a swap partition. I have just checked and here is no swap partition. I like to think that this time I know a little bit more about what I am doing B) Do I have a problem? Should I create a swap partition. If so how? Thanks
  19. Thanks for the quick response. I can now login as root in kde.
  20. I have upgraded from 9.2 to 10.1. I did a clean install of 10.1. In a terminal I can su root. When I go to the k menu and select logout the window that opens does not have any option for logging in as root or typing in a user name. I have been to the MCC and looked at evrything to do wih users/booting but cannot find anything that allows me to have the option of logging in as root. I know that everything can be done from a terminal but it is a matter of choice. Sometimes it is easier to use a terminal; other times the GUI. Do I need to edit a file? Thanks.
  21. I am trying to compile gimp 2.2 and am having trouble installing pango. I have determined that I need to install glib 2.4.8 pango 1.4.0 atk gtk+ 2.4 I have installed glib and atk. After much frustration trying to get pango ./configure to run (it reported the wrong version of glib) I discovered that I needed to enter export PKG_CONFIG_PASTH=/usr/local/lib/pkgconfig export LD_LIBRARY_PATH=/usr/local/lib The problem I now have is that when I enter make I get the following errors: /pango-1.4.1/pango/.libs/libpangoft2-1.0.so: undefined reference to `g_type_instance_get_private' /pango-1.4.1/pango/.libs/libpangoft2-1.0.so: undefined reference to `g_type_class_add_private' /pango-1.4.1/pango/.libs/libpango-1.0.so: undefined reference to `g_unichar_get_mirror_char' If I had the wrong versions of these libraries I assume that ./configure would have detected the problem. Hence I do not know what to do next. FWIIW: Mandrake 9.2 gcc 3.3.1 kernel 2.4.22-10mdk Any help would be appreciated.
  22. Thanks for that. kghostview was already installed on my system but I had not noticed it because in the menu it was listed under "Publishing" and I wanted to read pdf files not create them (-; I know that Open Office can be used to create pdf files. I am impressed with kghostview. It has a clean and simple interface that is intuative. Contrast that with Acrobat which has a very messy and cluttered interface. Whenever I run Acrobat I first have to scan through each of the icons to remember the function of each. I will be using kghostview from now on.
  23. I am running Mandrake 9.2. I have downloaded Acrobat and successfully installed it. The problem is the font used by the GUI. It is *ugly*. It reminds me of some of the message windows in win 3.0. Pdf files I have opened all seem to use the correct fonts. The problem is with the Acrobat user interface. Is there any way I can improve the appearance of Acrobat?
  24. A message has been posted on another forum about an open source clone of Proxomitron. This is exciting news as the lack of a Linux version of Proxomitron is one of the reasons why I have not made a permanent switch to Linux. IMHO Proxomitron is in the top five of best freeware programs ever written. Do not ask me what the other four are as I do not know. I know about Privoxy (and am currently running it) but Privoxy does not have the power and flexibility of Proxomitron. Go to: http://proximodo.sourceforge.net/ A Windows binary of Proximodo is available but, as yet, no Linux version. The program author has supplied a Linux Makefile. Proximodo requires wxWidgets. I have installed version 2.5.3 of wxWidgets (with the "with-X" option). I have followed the instructions in the Proximodo Makefile but cannot get the program to compile. I get error messages about syntax errors in mathcalls.h, which is a GNU file. I know that this is a Mandrake rather than a GNU forum but I am hoping that some of the gurus on this list can help me. I am very keen to compile a Linux version of Proximodo. The following is rather long. It contains the following: Output of find ./ -name "wx" command Output of wxWidgets configure-wx command. Output of Proximodo make Any help would be appreciated. *************Result of find command********************************** [root@localhost dad]# find /. -name "wx" /./home/dad/SetUpLinux/wxX11-2.5.3/include/wx /./home/dad/SetUpLinux/wxX11-2.5.3/contrib/include/wx /./home/dad/SetUpLinux/wxWidgets-2.5.3/contrib/include/wx /./home/dad/SetUpLinux/wxWidgets-2.5.3/docs/latex/wx /./home/dad/SetUpLinux/wxWidgets-2.5.3/include/wx /./home/dad/SetUpLinux/wxWidgets-2.5.3/lib/wx /./home/dad/SetUpLinux/wxWidgets-2.5.3/lib/wx/include/x11univ-ansi-release-2.5/wx /./usr/share/wx (empty - from 2.4 install) /./usr/local/include/wx (empty - from 2.4 install?) /./usr/local/include/wx-2.5/wx /./usr/local/lib/wx (version 2.5) /./usr/local/lib/wx/include/x11univ-ansi-release-2.5/wx /./usr/local/share/wx (version 2.5) [root@localhost dad]# ********Result of configure-wx ---see Proximodo Makefile ******** WXINC = -I/home/dad/SetUpLinux/wxWidgets-2.5.3/lib/wx/include/x11univ-ansi-release-2.5 -I/home/dad/SetUpLinux/wxWidgets-2.5.3/include -I/home/dad/SetUpLinux/wxWidgets-2.5.3/contrib/include -D__WXUNIVERSAL__ -D__WXX11__ -I/usr/X11R6/include -D_FILE_OFFSET_BITS=64 -D_LARGE_FILES # Replace the value below with the output of wx-config --libs WXLIB = -L/home/dad/SetUpLinux/wxWidgets-2.5.3/lib -pthread -L/usr/X11R6/lib -lwx_x11univ_xrc-2.5 -lwx_x11univ_html-2.5 -lwx_x11univ_adv-2.5 -lwx_x11univ_core-2.5 -lwx_base_xml-2.5 -lwx_base_net-2.5 -lwx_base-2.5 ****************Result of Proximodo make************************* [root@localhost src]# make g++ -Wall -g -O2 -I/home/dad/SetUpLinux/wxWidgets-2.5.3/lib/wx/include/x11univ-ansi-release-2.5 -I/home/dad/SetUpLinux/wxWidgets-2.5.3/include -I/home/dad/SetUpLinux/wxWidgets-2.5.3/contrib/include -D__WXUNIVERSAL__ -D__WXX11__ -I/usr/X11R6/include -D_FILE_OFFSET_BITS=64 -D_LARGE_FILES -I/home/dad/SetUpLinux/wxWidgets-2.5.3/lib/wx/include/x11univ-ansi-release-2.5 -I/home/dad/SetUpLinux/wxWidgets-2.5.3/include -I/home/dad/SetUpLinux/wxWidgets-2.5.3/contrib/include -D__WXUNIVERSAL__ -D__WXX11__ -I/usr/X11R6/include -D_FILE_OFFSET_BITS=64 -D_LARGE_FILES -c -o configscreen.o configscreen.cpp In file included from /usr/include/errno.h:36, from /usr/include/c++/3.3.1/cerrno:48, from /usr/include/c++/3.3.1/bits/locale_facets.tcc:38, from /usr/include/c++/3.3.1/locale:47, from /usr/include/c++/3.3.1/bits/istream.tcc:37, from /usr/include/c++/3.3.1/istream:768, from /usr/include/c++/3.3.1/sstream:44, from zlibbuffer.h:30, from requestmanager.h:32, from proxy.h:32, from configscreen.cpp:38: /usr/include/bits/errno.h:38: error: syntax error before `)' token In file included from /usr/include/math.h:65, from /usr/include/c++/3.3.1/cmath:51, from /usr/include/c++/3.3.1/bits/locale_facets.tcc:41, from /usr/include/c++/3.3.1/locale:47, from /usr/include/c++/3.3.1/bits/istream.tcc:37, from /usr/include/c++/3.3.1/istream:768, from /usr/include/c++/3.3.1/sstream:44, from zlibbuffer.h:30, from requestmanager.h:32, from proxy.h:32, from configscreen.cpp:38: /usr/include/bits/mathcalls.h:179: error: syntax error before `)' token /usr/include/bits/mathcalls.h:179: error: syntax error before `)' token /usr/include/bits/mathcalls.h:182: error: syntax error before `)' token /usr/include/bits/mathcalls.h:182: error: syntax error before `)' token /usr/include/bits/mathcalls.h:185: error: syntax error before `)' token /usr/include/bits/mathcalls.h:185: error: syntax error before `)' token /usr/include/bits/mathcalls.h:193: error: syntax error before `)' token /usr/include/bits/mathcalls.h:196: error: syntax error before `)' token /usr/include/bits/mathcalls.h:202: error: syntax error before `)' token /usr/include/bits/mathcalls.h:205: error: syntax error before `)' token /usr/include/bits/mathcalls.h:218: error: syntax error before `)' token /usr/include/bits/mathcalls.h:218: error: syntax error before `)' token /usr/include/bits/mathcalls.h:225: error: syntax error before `)' token /usr/include/bits/mathcalls.h:225: error: syntax error before `)' token /usr/include/bits/mathcalls.h:231: error: syntax error before `)' token /usr/include/bits/mathcalls.h:235: error: syntax error before `)' token /usr/include/bits/mathcalls.h:283: error: syntax error before `)' token /usr/include/bits/mathcalls.h:283: error: syntax error before `)' token /usr/include/bits/mathcalls.h:285: error: syntax error before `)' token /usr/include/bits/mathcalls.h:285: error: syntax error before `)' token /usr/include/bits/mathcalls.h:310: error: syntax error before `)' token /usr/include/bits/mathcalls.h:310: error: syntax error before `)' token /usr/include/bits/mathcalls.h:314: error: syntax error before `)' token /usr/include/bits/mathcalls.h:314: error: syntax error before `)' token /usr/include/bits/mathcalls.h:347: error: syntax error before `)' token /usr/include/bits/mathcalls.h:351: error: syntax error before `)' token In file included from /usr/include/math.h:88, from /usr/include/c++/3.3.1/cmath:51, from /usr/include/c++/3.3.1/bits/locale_facets.tcc:41, from /usr/include/c++/3.3.1/locale:47, from /usr/include/c++/3.3.1/bits/istream.tcc:37, from /usr/include/c++/3.3.1/istream:768, from /usr/include/c++/3.3.1/sstream:44, from zlibbuffer.h:30, from requestmanager.h:32, from proxy.h:32, from configscreen.cpp:38: /usr/include/bits/mathcalls.h:179: error: syntax error before `)' token /usr/include/bits/mathcalls.h:179: error: syntax error before `)' token /usr/include/bits/mathcalls.h:182: error: syntax error before `)' token /usr/include/bits/mathcalls.h:182: error: syntax error before `)' token /usr/include/bits/mathcalls.h:185: error: syntax error before `)' token /usr/include/bits/mathcalls.h:185: error: syntax error before `)' token /usr/include/bits/mathcalls.h:193: error: syntax error before `)' token /usr/include/bits/mathcalls.h:196: error: syntax error before `)' token /usr/include/bits/mathcalls.h:202: error: syntax error before `)' token /usr/include/bits/mathcalls.h:205: error: syntax error before `)' token /usr/include/bits/mathcalls.h:218: error: syntax error before `)' token /usr/include/bits/mathcalls.h:218: error: syntax error before `)' token /usr/include/bits/mathcalls.h:225: error: syntax error before `)' token /usr/include/bits/mathcalls.h:225: error: syntax error before `)' token /usr/include/bits/mathcalls.h:231: error: syntax error before `)' token /usr/include/bits/mathcalls.h:235: error: syntax error before `)' token /usr/include/bits/mathcalls.h:283: error: syntax error before `)' token /usr/include/bits/mathcalls.h:283: error: syntax error before `)' token /usr/include/bits/mathcalls.h:285: error: syntax error before `)' token /usr/include/bits/mathcalls.h:285: error: syntax error before `)' token /usr/include/bits/mathcalls.h:310: error: syntax error before `)' token /usr/include/bits/mathcalls.h:310: error: syntax error before `)' token /usr/include/bits/mathcalls.h:314: error: syntax error before `)' token /usr/include/bits/mathcalls.h:314: error: syntax error before `)' token /usr/include/bits/mathcalls.h:347: error: syntax error before `)' token /usr/include/bits/mathcalls.h:351: error: syntax error before `)' token In file included from /usr/include/math.h:109, from /usr/include/c++/3.3.1/cmath:51, from /usr/include/c++/3.3.1/bits/locale_facets.tcc:41, from /usr/include/c++/3.3.1/locale:47, from /usr/include/c++/3.3.1/bits/istream.tcc:37, from /usr/include/c++/3.3.1/istream:768, from /usr/include/c++/3.3.1/sstream:44, from zlibbuffer.h:30, from requestmanager.h:32, from proxy.h:32, from configscreen.cpp:38: /usr/include/bits/mathcalls.h:179: error: syntax error before `)' token /usr/include/bits/mathcalls.h:179: error: syntax error before `)' token /usr/include/bits/mathcalls.h:182: error: syntax error before `)' token /usr/include/bits/mathcalls.h:182: error: syntax error before `)' token /usr/include/bits/mathcalls.h:185: error: syntax error before `)' token /usr/include/bits/mathcalls.h:185: error: syntax error before `)' token /usr/include/bits/mathcalls.h:193: error: syntax error before `)' token /usr/include/bits/mathcalls.h:196: error: syntax error before `)' token /usr/include/bits/mathcalls.h:202: error: syntax error before `)' token /usr/include/bits/mathcalls.h:205: error: syntax error before `)' token /usr/include/bits/mathcalls.h:218: error: syntax error before `)' token /usr/include/bits/mathcalls.h:218: error: syntax error before `)' token /usr/include/bits/mathcalls.h:225: error: syntax error before `)' token /usr/include/bits/mathcalls.h:225: error: syntax error before `)' token /usr/include/bits/mathcalls.h:231: error: syntax error before `)' token /usr/include/bits/mathcalls.h:235: error: syntax error before `)' token /usr/include/bits/mathcalls.h:283: error: syntax error before `)' token /usr/include/bits/mathcalls.h:283: error: syntax error before `)' token /usr/include/bits/mathcalls.h:285: error: syntax error before `)' token /usr/include/bits/mathcalls.h:285: error: syntax error before `)' token /usr/include/bits/mathcalls.h:310: error: syntax error before `)' token /usr/include/bits/mathcalls.h:310: error: syntax error before `)' token /usr/include/bits/mathcalls.h:314: error: syntax error before `)' token /usr/include/bits/mathcalls.h:314: error: syntax error before `)' token /usr/include/bits/mathcalls.h:347: error: syntax error before `)' token /usr/include/bits/mathcalls.h:351: error: syntax error before `)' token make: *** [configscreen.o] Error 1 [root@localhost src]# ****************Result of Proximodo make********************************** [moved from Software by spinynorman]
×
×
  • Create New...