Control: tags -1 + patch

I believe the following patch solve the build problems for hplib in
unstable.

diff --git a/base/g.py b/base/g.py
index 15e67fc1..52380a8e 100644
--- a/base/g.py
+++ b/base/g.py
@@ -128,7 +128,7 @@ class ConfigBase(object):
             try:
                 fp = open(self.filename, "r")
                 try:
-                    self.conf.readfp(fp)
+                    self.conf.read_file(fp)
                 except configparser.MissingSectionHeaderError:
                     print("")
                     log.error("Found No Section in %s. Please set the http 
proxy for root and try again." % self.filename)
diff --git a/prnt/hpps/hppsfilter.c b/prnt/hpps/hppsfilter.c
index 79a6bf30..7d20a463 100644
--- a/prnt/hpps/hppsfilter.c
+++ b/prnt/hpps/hppsfilter.c
@@ -105,7 +105,7 @@ static void open_tempbookletfile(char *mode)
     if(ptempbooklet_file == NULL)
     {
             fprintf(stderr, "ERROR: Unable to open temp file %s\n", 
temp_filename);
-            return 1;
+            return;
     }  
     chmod(temp_filename, S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH);
 
diff --git a/prnt/hpps/pserror.c b/prnt/hpps/pserror.c
index 114d7e1b..41ddf1c8 100644
--- a/prnt/hpps/pserror.c
+++ b/prnt/hpps/pserror.c
@@ -24,7 +24,7 @@ extern char *program ;        /* Defined by main program, 
giving program name */
 void message(int flags, char *format, ...)
 {
   va_list args ;
-  static column = 0 ;          /* current screen column for message wrap */
+  static int column = 0 ;              /* current screen column for message 
wrap */
   char msgbuf[MAX_MESSAGE] ;   /* buffer in which to put the message */
   char *bufptr = msgbuf ;      /* message buffer pointer */
 
diff --git a/scan/sane/hpaio.c b/scan/sane/hpaio.c
index 01706829..ae4a3f67 100644
--- a/scan/sane/hpaio.c
+++ b/scan/sane/hpaio.c
@@ -379,7 +379,7 @@ extern SANE_Status sane_hpaio_get_devices(const SANE_Device 
***deviceList, SANE_
    ResetDeviceList(&DeviceList);
    DevDiscovery(localOnly);
    *deviceList = (const SANE_Device **)DeviceList;
-   SANE_Device*** devList;
+   const SANE_Device*** devList;
    orblite_get_devices(devList, localOnly);
 
    return SANE_STATUS_GOOD;
diff --git a/scan/sane/orblite.c b/scan/sane/orblite.c
index a3bfcb92..cef97298 100644
--- a/scan/sane/orblite.c
+++ b/scan/sane/orblite.c
@@ -64,28 +64,28 @@ SANE_Option_Descriptor      DefaultOrbOptions[] = {
                SANE_NAME_SCAN_TL_X, SANE_TITLE_SCAN_TL_X, SANE_DESC_SCAN_TL_X, 
 // name, title, desc
                SANE_TYPE_FIXED, SANE_UNIT_MM, sizeof(SANE_Fixed),// type, 
unit, size
                SANE_CAP_SOFT_SELECT | SANE_CAP_SOFT_DETECT,      // 
cap(ability)
-               SANE_CONSTRAINT_RANGE, (SANE_Char**)&SANE_rangeLeft  // 
constraint_type, constraint
+               SANE_CONSTRAINT_RANGE, (const SANE_Char**)&SANE_rangeLeft  // 
constraint_type, constraint
        },
 
        {
                SANE_NAME_SCAN_TL_Y, SANE_TITLE_SCAN_TL_Y, SANE_DESC_SCAN_TL_Y, 
 // name, title, desc
                SANE_TYPE_FIXED, SANE_UNIT_MM, sizeof(SANE_Fixed),// type, 
unit, size
                SANE_CAP_SOFT_SELECT | SANE_CAP_SOFT_DETECT,      // 
cap(ability)
-               SANE_CONSTRAINT_RANGE, (SANE_Char**)&SANE_rangeTop  // 
constraint_type, constraint
+               SANE_CONSTRAINT_RANGE, (const SANE_Char**)&SANE_rangeTop  // 
constraint_type, constraint
        },
   
        {
                SANE_NAME_SCAN_BR_X, SANE_TITLE_SCAN_BR_X, SANE_DESC_SCAN_BR_X, 
 // name, title, desc
                SANE_TYPE_FIXED, SANE_UNIT_MM, sizeof(SANE_Fixed),// type, 
unit, size
                SANE_CAP_SOFT_SELECT | SANE_CAP_SOFT_DETECT,      // 
cap(ability)
-               SANE_CONSTRAINT_RANGE, (SANE_Char**)&SANE_rangeRight  // 
constraint_type, constraint
+               SANE_CONSTRAINT_RANGE, (const SANE_Char**)&SANE_rangeRight  // 
constraint_type, constraint
        },
 
        {
                SANE_NAME_SCAN_BR_Y, SANE_TITLE_SCAN_BR_Y, SANE_DESC_SCAN_BR_Y, 
 // name, title, desc
                SANE_TYPE_FIXED, SANE_UNIT_MM, sizeof(SANE_Fixed),// type, 
unit, size
                SANE_CAP_SOFT_SELECT | SANE_CAP_SOFT_DETECT,      // 
cap(ability)
-               SANE_CONSTRAINT_RANGE, (SANE_Char**)&SANE_rangeBottom  // 
constraint_type, constraint
+               SANE_CONSTRAINT_RANGE, (const SANE_Char**)&SANE_rangeBottom  // 
constraint_type, constraint
        },
    
        // optResolution,                                       // resolution 
group  
@@ -93,7 +93,7 @@ SANE_Option_Descriptor        DefaultOrbOptions[] = {
                SANE_NAME_SCAN_RESOLUTION, SANE_TITLE_SCAN_RESOLUTION, 
SANE_DESC_SCAN_RESOLUTION, // name, title, desc
                SANE_TYPE_INT, SANE_UNIT_DPI, sizeof(SANE_Word),  // type, 
unit, size,
                SANE_CAP_SOFT_SELECT | SANE_CAP_SOFT_DETECT,      // 
cap(ability)
-               SANE_CONSTRAINT_WORD_LIST, (SANE_Char**)SANE_resolutions // 
constraint type, constraint
+               SANE_CONSTRAINT_WORD_LIST, (const SANE_Char**)SANE_resolutions 
// constraint type, constraint
        },
 
        // optMode,                                            // color/depth 
group
@@ -101,7 +101,7 @@ SANE_Option_Descriptor      DefaultOrbOptions[] = {
                SANE_NAME_SCAN_MODE, SANE_TITLE_SCAN_MODE, SANE_DESC_SCAN_MODE, 
// name, title, desc
                SANE_TYPE_STRING, SANE_UNIT_NONE, 256,  // type, unit, size,
                SANE_CAP_SOFT_SELECT | SANE_CAP_SOFT_DETECT,      // 
cap(ability)
-               SANE_CONSTRAINT_STRING_LIST, (SANE_Char**)SANE_modes   // 
constraint type, constraint
+               SANE_CONSTRAINT_STRING_LIST, (const SANE_Char**)SANE_modes   // 
constraint type, constraint
        },
  
        // optSource, 
@@ -109,7 +109,7 @@ SANE_Option_Descriptor      DefaultOrbOptions[] = {
                SANE_NAME_SCAN_SOURCE, SANE_TITLE_SCAN_SOURCE, 
SANE_DESC_SCAN_SOURCE, // name, title, desc
                SANE_TYPE_STRING, SANE_UNIT_NONE, 256,  // type, unit, size,
                SANE_CAP_SOFT_SELECT | SANE_CAP_SOFT_DETECT,      // 
cap(ability)
-               SANE_CONSTRAINT_STRING_LIST, (SANE_Char**)SANE_sources   // 
constraint type, constraint
+               SANE_CONSTRAINT_STRING_LIST, (const SANE_Char**)SANE_sources   
// constraint type, constraint
        },
  
        // optPaperSize, 
@@ -117,7 +117,7 @@ SANE_Option_Descriptor      DefaultOrbOptions[] = {
                SANE_NAME_PAPER_SIZE, SANE_TITLE_PAPER_SIZE, 
SANE_DESC_PAPER_SIZE, // name, title, desc
                SANE_TYPE_STRING, SANE_UNIT_NONE, 256,  // type, unit, size,
                SANE_CAP_SOFT_SELECT | SANE_CAP_SOFT_DETECT,      // 
cap(ability)
-               SANE_CONSTRAINT_STRING_LIST, (SANE_Char**)SANE_paper_sizes   // 
constraint type, constraint
+               SANE_CONSTRAINT_STRING_LIST, (const 
SANE_Char**)SANE_paper_sizes   // constraint type, constraint
        },
  
        // optPaperSize, 
@@ -125,7 +125,7 @@ SANE_Option_Descriptor      DefaultOrbOptions[] = {
                SANE_NAME_PAPER_SIZE, SANE_TITLE_PAPER_SIZE, 
SANE_DESC_PAPER_SIZE, // name, title, desc
                SANE_TYPE_INT, SANE_UNIT_DPI, sizeof(SANE_Word),  // type, 
unit, size,
                SANE_CAP_SOFT_SELECT | SANE_CAP_SOFT_DETECT,      // 
cap(ability)
-               SANE_CONSTRAINT_WORD_LIST, (SANE_Char**)SANE_resolutions // 
constraint type, constraint
+               SANE_CONSTRAINT_WORD_LIST, (const SANE_Char**)SANE_resolutions 
// constraint type, constraint
        },
 #ifdef NOTDEF
 // default template
@@ -305,7 +305,7 @@ orblite_open (SANE_String_Const devicename, SANE_Handle * 
handle)
        if (stat != SANE_STATUS_GOOD)
                return stat;
 
-       stat = g_handle->bb_orblite_open(devicename, &g_handle);
+       stat = g_handle->bb_orblite_open(devicename, (void**)&g_handle);
        if (stat == SANE_STATUS_GOOD)
                *handle = g_handle;
 

-- 
Happy hacking
Petter Reinholdtsen

Reply via email to