1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-01 22:05:08 +00:00
freebsd-ports/x11/xbanner/files/patch-ab
Steve Price ac8274b67c Fix the following problems with version 1.31 of the xbanner port.
- installing in libexec directory isn't useful
    - app-defaults file could only be found when XAPPLRESDIR
      enviroment variable is set -> patch in sourcefile is needed
    - some compiler warnings and gets usage is fixed
    - wrong usage of isnumber macro fixed

PR:		11768
Submitted by:	Lars Koeller <lkoeller@cc.fh-lippe.de>
1999-06-06 18:11:04 +00:00

71 lines
2.1 KiB
Plaintext

*** xb_check.c.orig Mon May 12 17:55:59 1997
--- xb_check.c Tue May 18 20:51:35 1999
***************
*** 145,151 ****
}
/* boolean that checks if a string is numeric */
! int isnumber(char *s)
{
if(atoi(s)==0 && *s!='0')
return 0;
--- 145,151 ----
}
/* boolean that checks if a string is numeric */
! int isnumb(char *s)
{
if(atoi(s)==0 && *s!='0')
return 0;
***************
*** 303,309 ****
}
}
! while(gets(line)!=NULL)
{
if(line[0]=='!')
continue;
--- 303,309 ----
}
}
! while(fgets(line, LNLEN, stdin)!=NULL)
{
if(line[0]=='!')
continue;
***************
*** 363,369 ****
printf("Valid resource name with unknown program name:\n%s\n",line);
if(val[0]=='\0')
printf("No value in line containing valid resource name:\n%s\n",line);
! if(!isnumber(val))
printf("Value in line requiring a numerical value is not numerical:\n%s\n",line);
}
else
--- 363,369 ----
printf("Valid resource name with unknown program name:\n%s\n",line);
if(val[0]=='\0')
printf("No value in line containing valid resource name:\n%s\n",line);
! if(!isnumb(val))
printf("Value in line requiring a numerical value is not numerical:\n%s\n",line);
}
else
***************
*** 373,379 ****
printf("Valid resource class name with unknown program name:\n%s\n",line);
if(val[0]=='\0')
printf("No value in line containing valid resource class name:\n%s\n",line);
! if(!isnumber(val))
printf("Value in line requiring a numerical value is not numerical:\n%s\n",line);
}
break;
--- 373,379 ----
printf("Valid resource class name with unknown program name:\n%s\n",line);
if(val[0]=='\0')
printf("No value in line containing valid resource class name:\n%s\n",line);
! if(!isnumb(val))
printf("Value in line requiring a numerical value is not numerical:\n%s\n",line);
}
break;