[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Re: Bug#116772: hpoj-devel] hpoj: failed to build on m68k.



Thanks got it!

Your previous patch still didn't satisfy the autobuilders, as they 
were still looking for MLCD_OBJS=ParPort.o which of course 
wasn't available :-(

I think you either need to perform the check for PAR_PLATFORM=NONE earlier
or as I have done reset MLCD_OBJS to null:

--- hpoj-0.8.orig/configure.in
+++ hpoj-0.8/configure.in
                  [AC_MSG_RESULT(yes)
                   MLCD_CFLAGS=-DBROKEN_IO_H
                   MLCD_OBJS="$MLCD_OBJS ioWrapper.o"
                  ],
                  [AC_MSG_RESULT(no)
                   PAR_PLATFORM=NONE
+                  MLCD_OBJS=""
                  ]
                 )
               ]
        )
 fi
+AC_LANG_C

 # Check for USB support.
 AC_MSG_CHECKING(for user-mode USB support)


On Sun, Oct 28, 2001 at 04:30:20AM -0800, David Paschal wrote:
> Hi, Mark.  I just discovered a problem with the configure-script changes I
> made for you.  By moving some of the macros around, I accidentally broke
> detection of SNMP.  You can fix this by adding the line "AC_LANG_C" after
> the "fi" of the "Check for broken or missing <sys/io.h>" block and before
> the "Check for USB support" block.  I'll check this into CVS soon.
> 
> David
> 
> 



Reply to: