I'm trying to set my box as a scanner server.
downloaded the latest sane-backends tarball.
however what I tried so far failed :
* using svn/buildroot : cxa_atexit is disabled and thus scanimage/saned fail (uClibc 0.9.29 has been "delayed a bit". any more recent news ?) * using buildtool : building liblib.a gives me a "unable to infer tagged configuration", meaning certainly that my buildtool.mk file (attached) is wrong but I'm not a pro and don't know why. maybe a third alternative would be to use a glibc-compiled sane-backends version with the help of a libc207/libc225 package but apparently none exists for Bering 3.0.
any help ?
#############################################################
#
# sane 
#
#############################################################

include $(MASTERMAKEFILE)
SANE_DIR:=sane-backends-1.0.18/
SANE_TARGET_DIR:=$(BT_BUILD_DIR)/sane
SANE_CONFIG_PATH:=$(BT_SOURCE_DIR)/$(SANE_DIR)/tools

.source:
        tar xvzf $(SANE_SOURCE)
        touch .source

source: .source
 
.configure:
        (cd $(SANE_DIR) ; ./configure --prefix=$(BT_STAGING_DIR) \
                --target=$(GNU_TARGET_NAME) \
                --host=$(GNU_HOST_NAME) \
                --build=$(GNU_HOST_NAME) \
                --oldincludedir=$(BT_STAGING_DIR)/include )
        touch .configure

.build: .configure
        (cd $(SANE_DIR) ; $(MAKE) all CXX=$(TARGET_CC) CC=$(TARGET_CC) 
LD=$(TARGET_LD) )
#       (cd $(SANE_DIR) ; $(MAKE) install INSTALL_PREFIX=$(SANE_TARGET_DIR))
        $(BT_STRIP) $(BT_STRIP_BINOPTS) $(SANE_DIR)/tools/sane-find-scanner
        $(BT_STRIP) $(BT_STRIP_BINOPTS) $(SANE_DIR)/frontend/.libs/*
        touch .build
build: .build

clean:
        $(MAKE) -C $(SANE_DIR) clean
        rm .build
        rm .configure

srcclean: clean
        rm -rf $(SANE_DIR) 
        rm .source
-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
------------------------------------------------------------------------
leaf-user mailing list: leaf-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/leaf-user
Support Request -- http://leaf-project.org/

Reply via email to