免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 3795 | 回复: 1
打印 上一主题 下一主题

[安装配置] AIX5.3 安装打印机驱动程序cups-1.4b1失败 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2008-12-11 08:10 |只看该作者 |倒序浏览
在网上下载cups-1.4b1-source.tar.gz解压之后,进入目录cups-1.4b1,按照其中Install.txt说明步骤安装,执行如下:
#./configure
#make     (失败)     Target ".NOTPARALLEL" is up to date.      在系统中搜索也没有找到文件.NOTPARALLEL
后来在网上看到有用gmake代替make执行,安装gmake之后,运行报如下错误
Linking testsupplies...
Compiling ipp.c...
Linking ipp...
ld: 0711-317 ERROR: Undefined symbol: ._cupsLangPrintError
ld: 0711-345 Use the -bloadmap or -bnoquiet option to obtain more information.
collect2: ld returned 8 exit status
gmake[1]: *** [ipp] Error 1
gmake: *** [all] Error 1

后来又安装了 gcc, libjpeg, libjpeg-devel, libpng, libpng-devel, libtiff, libtiff-devel, zlib, and zlib-devel packages installed to compile CUPS with all of the standard functionality. The krb5-devel, krb5-libs, openldap, openldap, openslp, openslp-devel, avahi, and avahi-devel  中标示出红色的部分,另外GCC之前就安装了; 但是其他的在AIX Toolbox for linux Application中没有找到,因此没有安装;
再次执行gmake,依旧出现错误,但错误不相同,如下:
a - util.o
Making all in filter...
Compiling image-bmp.c...
Compiling image-colorspace.c...
Compiling image-gif.c...
Compiling image-jpeg.c...
Compiling image-photocd.c...
Compiling image-pix.c...
Compiling image-png.c...
Compiling image-pnm.c...
Compiling image-sgi.c...
Compiling image-sgilib.c...
Compiling image-sun.c...
Compiling image-tiff.c...
In file included from image-tiff.c:29:
/opt/freeware/include/tiff.h:86: error: conflicting types for 'int32'
/usr/include/sys/inttypes.h:620: error: previous declaration of 'int32' was here
gmake[1]: *** [image-tiff.o] Error 1
gmake: *** [all] Error 1
#
至此实在不知道如何再进展下去?  对linux不怎么熟息,哪位大侠能帮忙看看,给些意见解决办法?

论坛徽章:
0
2 [报告]
发表于 2008-12-11 08:11 |只看该作者

回复 #1 rain4321 的帖子

补充安装说明文件INSTALL.txt
INSTALL - CUPS v1.4b1 - 2008-10-10
----------------------------------

This file describes how to compile and install CUPS from source
code. For more information on CUPS see the file called
"README.txt".  A complete change log can be found in
"CHANGES.txt".

**** IF YOU HAVE A NON-POSTSCRIPT PRINTER AND ARE NOT       ****
**** RUNNING MAC OS X, YOU WILL ALSO NEED TO INSTALL GPL    ****
**** GHOSTSCRIPT WITH THE "cups" DRIVER AFTER YOU INSTALL   ****
**** CUPS.                                                  ****


BEFORE YOU BEGIN

    You'll need ANSI-compliant C and C++ compilers, plus a make
    program and Bourne shell.  The GNU compiler tools work well -
    we've tested the current CUPS code against several versions
    of GCC with excellent results.

    The makefiles used by the project should work with most
    versions of make.  We've tested them with GNU make as well as
    the make programs shipped by Compaq, HP, SGI, and Sun.
    BSD users should use GNU make (gmake) since BSD make does
    not support "include".

    Besides these tools you'll want the JPEG, PNG, TIFF, and ZLIB
    libraries for image support, the CDSA, GNU TLS, or OpenSSL
    libraries for encryption support, and the OpenLDAP and
    OpenSLP libraries for directory services support. CUPS will
    compile and run without these, however you'll miss out on
    many of the features provided by CUPS.

    Kerberos support requires MIT Kerberos 1.6.3 or later or
    Heimdal Kerberos, along with the corresponding GSSAPI
    pieces.

    Also, please note that CUPS no longer includes the
    Ghostscript- based pstoraster filter.  You *must* download
    GPL Ghostscript separately from the CUPS web site if you want
    to print PostScript files to non-PostScript printers on
    operating systems other than Mac OS X.


COMPILING FROM SUBVERSION

    The CUPS Subversion repository doesn't hold a copy of the
    pre-built configure script.  You'll need to run the GNU
    autoconf software (2.60 or higher) before compiling the
    software from Subversion:

        autoconf -f


CONFIGURATION

    CUPS uses GNU autoconf, so you should find the usual
    "configure" script in the main CUPS source directory.  To
    configure CUPS for your system, type:

        ./configure

    The default installation will put the CUPS software in the
    "/etc", "/usr", and "/var" directories on your system, which
    will overwrite any existing printing commands on your system.
    Use the "--prefix" option to install the CUPS software in
    another location:

        ./configure --prefix=/some/directory

    To see a complete list of configuration options, use the
    --help option:

        ./configure --help

    If any of the dependent libraries are not installed in a
    system default location (typically "/usr/include" and
    "/usr/lib") you'll need to set the CFLAGS, CPPFLAGS,
    CXXFLAGS, DSOFLAGS, and LDFLAGS environment variables prior
    to running configure:

        setenv CFLAGS "-I/some/directory"
        setenv CPPFLAGS "-I/some/directory"
        setenv CXXFLAGS "-I/some/directory"
        setenv DSOFLAGS "-L/some/directory"
        setenv LDFLAGS "-L/some/directory"
        ./configure ...

    or:

        CFLAGS="-I/some/directory" \
        CPPFLAGS="-I/some/directory" \
        CXXFLAGS="-I/some/directory" \
        DSOFLAGS="-L/some/directory" \
        LDFLAGS="-L/some/directory" \
        ./configure ...

    The "--enable-debug" option compiles CUPS with debugging enabled,
    as well as support for debug logging via the CUPS_DEBUG_LOG
    environment variable at run-time.

    Once you have configured things, just type:

        make ENTER

    or if you have FreeBSD, NetBSD, or OpenBSD type:

        gmake ENTER

    to build the software.


INSTALLING THE SOFTWARE

    Once you have built the software you need to install it.  The
    "install" target provides a quick way to install the software
    on your local system:

        make install ENTER

    or for FreeBSD, NetBSD, or OpenBSD:

        gmake install ENTER

    You can also build binary packages that can be installed on
    other machines using the RPM spec file
    ("packaging/cups.spec") or EPM list file
    ("packaging/cups.list").  The latter also supports building
    of binary RPMs, so it may be more convenient to use - we use
    EPM to build all of our binary distributions.

    You can find the RPM software at:

        http://www.rpm.org/

    The EPM software is available at:

        http://www.easysw.com/epm/


CREATING BINARY DISTRIBUTIONS WITH EPM

    The top level makefile supports generation of many types of binary
    distributions using EPM.  To build a binary distribution type:

        make <format> ENTER

    or

        gmake <format> ENTER

    for FreeBSD, NetBSD, and OpenBSD.  The <format> target is one of
    the following:

        epm       - Builds a script + tarfile package
        aix       - Builds an AIX package
        bsd       - Builds a *BSD package
        deb       - Builds a Debian package
        depot     - Builds a HP-UX package (also swinstall)
        inst      - Builds an IRIX package (also tardist)
        osx       - Builds a MacOS X package
        pkg       - Builds a Solaris package
        rpm       - Builds a RPM package
        setld     - Build a Tru64 UNIX package
        slackware - Build a Slackware package
        swinstall - Build a HP-UX package (also depot)
        tardist   - Builds an IRIX package (also inst)


GETTING DEBUG LOGGING FROM CUPS

    When configured with the "--enable-debug" option, CUPS compiles
    in additional debug logging support in the scheduler, CUPS API,
    and CUPS Imaging API.  Set the CUPS_DEBUG_LOG environment
    variable to a filename to append logging information at run-time.
    Use the name "-" to send the messages to stderr.


REPORTING PROBLEMS

    If you have problems, READ THE DOCUMENTATION FIRST!  If the
    documentation does not solve your problems, please post a
    message on the "cups.general" forum at:

        http://www.cups.org/newsgroups.php

    Include your operating system and version, compiler and
    version, and any errors or problems you've run into. The
    "config.log" file and the output from the configure script
    and make should also be sent, as it often helps to determine
    the cause of your problem.

    If you are running a version of Linux, be sure to provide the
    Linux distribution you have, too.
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP