pkgsrc/cad/pcb/patches/patch-ao
dmcmahill 53e4a5ba09 - use getcwd() instead of getwd().
- remove all compiler warnings on alpha

- add ${PKG_SYSCONFDIR}/pcb/local.inc where admins can list site specific
  libraries to be included instead of modifying one of the regularly
  installed/deinstalled files.  This way a local config is preserved when
  the pkg is upgraded.  Also a local config can be applied without modifying
  one of the files which is checksummed during the install.
2002-05-31 19:56:19 +00:00

31 lines
1 KiB
Text

$NetBSD: patch-ao,v 1.1 2002/05/31 19:56:21 dmcmahill Exp $
--- src/sizedialog.c.orig Wed May 13 06:29:59 1998
+++ src/sizedialog.c
@@ -87,7 +87,7 @@
/* ---------------------------------------------------------------------------
* some local identifiers
*/
-static int ReturnCode; /* returncode of buttons */
+static long int ReturnCode; /* returncode of buttons */
static SliderType Sliders[] = {
{ "linewidth", MIN_LINESIZE, MAX_LINESIZE, CHUNK, 0, NULL, NULL },
{ "via hole", MIN_PINORVIAHOLE, 0, CHUNK, 0, NULL, NULL },
@@ -180,7 +180,7 @@
*/
static void CB_CancelOrOK(Widget W, XtPointer ClientData, XtPointer CallData)
{
- ReturnCode = (int) ClientData;
+ ReturnCode = (long int) ClientData;
}
/* ---------------------------------------------------------------------------
@@ -190,7 +190,7 @@
*/
static void CB_ScrollProc(Widget W, XtPointer ClientData, XtPointer CallData)
{
- int delta = (int) CallData;
+ long int delta = (long int) CallData;
SliderTypePtr slider = (SliderTypePtr) ClientData;
UpdateScrollbar(slider,