To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=45470
                  Issue #:|45470
                  Summary:|cups setting in config_office/configure.in
                Component:|porting
                  Version:|680m86
                 Platform:|All
                      URL:|
               OS/Version:|All
                   Status:|NEW
        Status whiteboard:|
                 Keywords:|
               Resolution:|
               Issue type:|DEFECT
                 Priority:|P3
             Subcomponent:|code
              Assigned to:|mh
              Reported by:|maho





------- Additional comments from [EMAIL PROTECTED] Fri Mar 18 21:07:03 -0800 
2005 -------
At config_office/configure.in
-
AC_ARG_ENABLE(cups,
[  --enable-cups           enable cups support in the psprint project
],,enable_cups=yes)
---
enable_cups is yes by default, however,
several platform like darwin (mac os) sets test_cups=no
        darwin*) # Mac OS X
                test_x=no
                test_cups=no
--
unfortunately,
AC_MSG_CHECKING([whether to enable native CUPS support])
if test "$enable_cups" = "yes" -o "$enable_cups" = "TRUE"; then
   if test "$test_cups" = "no" ; then
      AC_MSG_ERROR([cups is not activated for your platform, raise bug report])
   else
      ENABLE_CUPS="TRUE"
      AC_MSG_RESULT([yes])
   fi
else
enable_cups = yes by default and test_cups = no by default
so by default, for platform test_cups is default, always fails at
configure.

---------------------------------------------------------------------
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to