|
From: Mark H. <ha...@us...> - 2003-04-22 21:46:34
|
Hello Alejandro, The latest version of CVS contains some fixes. Use the ./installOmni script. Then restart the cups daemon and install a new printer. Select the omni + CUPS version for your printer. Hope this helps, Mark Take a look at the Linux Omni Printer Driver Framework at http://www.ibm.com/linux/ltc/projects/omni/ |
|
From: Mark H. <ha...@us...> - 2003-04-24 14:18:58
|
Alejandro, Omni needs autotools to build. Goto ftp.gnu.org and download, build, and install the latest autoconf and automake. Hope this helps, Mark Take a look at the Linux Omni Printer Driver Framework at http://www.ibm.com/linux/ltc/projects/omni/ |
|
From: Alejandro N. <ja...@in...> - 2003-04-24 20:52:41
Attachments:
result.txt
|
El jueves 24, a las 09:14, Mark Hamzy escribi=F3: >=20 >=20 >=20 >=20 > Alejandro, >=20 > Omni needs autotools to build. Goto ftp.gnu.org and download, buil= d, and > install the latest autoconf and automake. >=20 I did this from the cd's of my OS. Now it's ok. But still can't bui= ld it, and below is the result of doing ./setupOmni. > Hope this helps, >=20 > Mark >=20 > Take a look at the Linux Omni Printer Driver Framework at > http://www.ibm.com/linux/ltc/projects/omni/ --=20 Saludos,=20 Alejandro Noli - 2003 - -------------- |
|
From: Mark H. <ha...@us...> - 2003-04-24 21:06:09
|
Alejandro, You also need to install libtool from gnu.org. Mark Take a look at the Linux Omni Printer Driver Framework at http://www.ibm.com/linux/ltc/projects/omni/ |
|
From: Alejandro N. <ja...@in...> - 2003-04-25 15:26:20
Attachments:
compiling.txt
devices.mak
|
By now, I'm working on Debian GNU/Linux. I'm installing Omni under /= usr/src/Omni/ Take a look to "compiling.txt" that is the result of -> ./setupOmni >= compiling.txt =2E. and these are the messages that -I think- are not included in th= at file. :-) nulinux:/usr/src/Omni# ./setupOmni > compiling.txt autoheader2.50: `config.h.in' is unchanged autoreconf2.50: `aclocal.m4' is updated autoheader2.50: `config.h.in' is unchanged configure: WARNING: Please install the gtkmm development package to b= uild the JobDialog. configure: WARNING: Please install the sigc development package to bu= ild the JobDialog. In file included from CopyOmniDeviceBIs.cpp:19: =2E./DebugOutput.hpp:23: ostream: No such file or directory CopyOmniDeviceBIs.cpp:27: ostream: No such file or directory make: *** [CopyOmniDeviceBIs.o] Error 1 autoheader2.50: `config.h.in' is unchanged In file included from DebugOutput.cpp:23: DebugOutput.hpp:23: ostream: No such file or directory make[2]: *** [DebugOutput.lo] Error 1 make[1]: *** [all-recursive] Error 1 make: *** [all-recursive-am] Error I attach the file "devices.mak"; Do I have to include the line "Epson= there? Sorry, if this is too much :-) KR El jueves 24, a las 16:04, Mark Hamzy escribi=F3: >=20 >=20 >=20 >=20 > Alejandro, >=20 > You also need to install libtool from gnu.org. >=20 > Mark >=20 > Take a look at the Linux Omni Printer Driver Framework at > http://www.ibm.com/linux/ltc/projects/omni/ --=20 Saludos,=20 Alejandro Noli - 2003 - -------------- |
|
From: Mark H. <ha...@us...> - 2003-04-25 19:13:56
|
Hello Alejandro,
> ../DebugOutput.hpp:23: ostream: No such file or directory
That error tells me that the c++ compiler that you use is not set up
correctly. ostream is a standard C++ header file.
For the simple file:
#include <ostream>
int main (int argc, char *argv[])
{
return 0;
}
If it is called bob.cpp and you compile it with "gcc -o bob bob.cpp" it
works. However, if it is called bob.c and you compile it with "gcc -o
bob.c" it fails with the error "bob.c:1:19: ostream: No such file or
directory."
Since omni files have a .cpp ending, this tells me that your compiler is
defaulting to C mode instead of C++ mode.
> I attach the file "devices.mak"; Do I have to include the line "Epson
there?
No. By default it compiles every device. The file devices.list controls
which XML files are installed.
I hope this helps.
I am also worried about "checking for g_module_close in -lgmodule... no" in
the configure output.
Mark
Take a look at the Linux Omni Printer Driver Framework at
http://www.ibm.com/linux/ltc/projects/omni/
|
|
From: Alejandro N. <ja...@in...> - 2003-04-28 20:22:50
|
El viernes 25, a las 14:08, Mark Hamzy escribi=F3:
>=20
>=20
>=20
>=20
> Hello Alejandro,
>=20
> > ../DebugOutput.hpp:23: ostream: No such file or directory
>=20
> That error tells me that the c++ compiler that you use is not set u=
p
> correctly. ostream is a standard C++ header file.
>=20
> For the simple file:
> #include <ostream>
>=20
> int main (int argc, char *argv[])
> {
> return 0;
> }
>=20
> If it is called bob.cpp and you compile it with "gcc -o bob bob.cpp=
" it
> works. However, if it is called bob.c and you compile it with "gcc=
-o
> bob.c" it fails with the error "bob.c:1:19: ostream: No such file o=
r
> directory."
>=20
> Since omni files have a .cpp ending, this tells me that your compil=
er is
> defaulting to C mode instead of C++ mode.
:-( I don't know how to change that setting. I have to investigate n=
ow. Besides, I have to say: thank you sir!
>=20
> > I attach the file "devices.mak"; Do I have to include the line "E=
pson
> there?
>=20
> No. By default it compiles every device. The file devices.list co=
ntrols
> which XML files are installed.
>=20
> I hope this helps.
>=20
> I am also worried about "checking for g_module_close in -lgmodule..=
. no" in
> the configure output.
>=20
>=20
> Mark
>=20
> Take a look at the Linux Omni Printer Driver Framework at
> http://www.ibm.com/linux/ltc/projects/omni/
--=20
Saludos,=20
Alejandro Noli
- 2003 -
--------------
|
|
From: Rick D. <den...@ct...> - 2003-04-23 01:59:40
|
I've got two IBM Network Printers attached to my Linux system. One is a NP17, the other is a NP12. Both have native Postscript Support. I can get to these with either the Omni Driver or as raw PS printers. If I use the Omni driver, the output is shifted down and to the right. How do I fix this. Neither driver seems to let me use options like tray selection or the duplex unit on the NP 17. Should I be able to do this? I do have the PPDs for both printers from a Windows system. |
|
From: Alejandro N. <ja...@in...> - 2003-04-23 14:01:00
|
The first mistake was to download the OmniEpsonVendor stuff. Now I'm= trying to download the other tar.gz file, just Omni0.9.0, I think. Let me see what happens now. I've been trying CVS way, but still learning to use it. Thank you. El martes 22, a las 16:31, Mark Hamzy escribi=F3: >=20 >=20 >=20 >=20 > Hello Alejandro, >=20 > The latest version of CVS contains some fixes. Use the ./installOm= ni > script. Then restart the cups daemon and install a new printer. S= elect > the omni + CUPS version for your printer. >=20 > Hope this helps, >=20 > Mark >=20 > Take a look at the Linux Omni Printer Driver Framework at > http://www.ibm.com/linux/ltc/projects/omni/ >=20 >=20 >=20 > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Omniprint-user mailing list > Omn...@li... > https://lists.sourceforge.net/lists/listinfo/omniprint-user --=20 Saludos,=20 Alejandro Noli - 2003 - -------------- |
|
From: Alejandro N. <ja...@in...> - 2003-04-24 11:45:04
|
Mark: there was a trouble installing ./setupOmni It asked me for something like "aclocal" that it's not installed in m= y system, at the begining of the process, and it stopped. =20 El martes 22, a las 16:31, Mark Hamzy escribi=F3: >=20 >=20 >=20 >=20 > Hello Alejandro, >=20 > The latest version of CVS contains some fixes. Use the ./installOm= ni > script. Then restart the cups daemon and install a new printer. S= elect > the omni + CUPS version for your printer. >=20 > Hope this helps, >=20 > Mark >=20 > Take a look at the Linux Omni Printer Driver Framework at > http://www.ibm.com/linux/ltc/projects/omni/ >=20 >=20 >=20 > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Omniprint-user mailing list > Omn...@li... > https://lists.sourceforge.net/lists/listinfo/omniprint-user --=20 Saludos,=20 Alejandro Noli - 2003 - -------------- |