diff options
author | Lars Koeller <lkoeller@FreeBSD.org> | 2005-10-01 18:11:29 +0000 |
---|---|---|
committer | Lars Koeller <lkoeller@FreeBSD.org> | 2005-10-01 18:11:29 +0000 |
commit | 685963973286a34e6cdf492c5a62d53969bdeef0 (patch) | |
tree | c53cf22895406294a988d580f09633d9e8c016a3 /deskutils | |
parent | - Respect PTHREAD_LIBS (diff) |
o) Fix compile problem
Notes
Notes:
svn path=/head/; revision=143919
Diffstat (limited to 'deskutils')
-rw-r--r-- | deskutils/xrolo/files/patch-ad | 4 | ||||
-rw-r--r-- | deskutils/xrolo/files/patch-ae | 21 | ||||
-rw-r--r-- | deskutils/xrolo/files/patch-af | 6 |
3 files changed, 24 insertions, 7 deletions
diff --git a/deskutils/xrolo/files/patch-ad b/deskutils/xrolo/files/patch-ad index 9ae8adcf59b5..9306bd8febb7 100644 --- a/deskutils/xrolo/files/patch-ad +++ b/deskutils/xrolo/files/patch-ad @@ -1,12 +1,12 @@ *** panel.c.orig Wed Dec 4 01:38:09 1991 ---- panel.c Sat Jan 9 22:49:59 1999 +--- panel.c Sat Oct 1 20:05:54 2005 *************** *** 35,40 **** --- 35,48 ---- */ -+ #ifdef HAVE_SYS_PARAM_H ++ #if (defined(__unix__) || defined(unix)) && !defined(USG) + #include <sys/param.h> + #endif + diff --git a/deskutils/xrolo/files/patch-ae b/deskutils/xrolo/files/patch-ae index e005821e7620..7350022f2928 100644 --- a/deskutils/xrolo/files/patch-ae +++ b/deskutils/xrolo/files/patch-ae @@ -1,5 +1,5 @@ *** cards.c.orig Tue Dec 3 23:33:56 1991 ---- cards.c Sat Jan 9 22:52:45 1999 +--- cards.c Sat Oct 1 20:07:14 2005 *************** *** 36,47 **** */ @@ -18,7 +18,7 @@ */ -+ #ifdef HAVE_SYS_PARAM_H ++ #if (defined(__unix__) || defined(unix)) && !defined(USG) + #include <sys/param.h> + #endif + @@ -70,3 +70,20 @@ /* --------------------------- Locals -------------------------------------- */ static struct card *dead; +*************** +*** 757,763 **** + char *s1, *s2; + { + int retval; +! char *p1, *alloca(); + char *p2; + + if ( *s2 == '\0' && *s1 == '\0') +--- 767,773 ---- + char *s1, *s2; + { + int retval; +! char *p1; + char *p2; + + if ( *s2 == '\0' && *s1 == '\0') diff --git a/deskutils/xrolo/files/patch-af b/deskutils/xrolo/files/patch-af index 105af2e8b411..499521c5cef2 100644 --- a/deskutils/xrolo/files/patch-af +++ b/deskutils/xrolo/files/patch-af @@ -1,12 +1,12 @@ -*** popup.c.org Sat Jan 9 22:53:12 1999 ---- popup.c Sat Jan 9 22:54:07 1999 +*** popup.c.orig Tue Dec 3 23:28:39 1991 +--- popup.c Sat Oct 1 20:06:23 2005 *************** *** 6,11 **** --- 6,14 ---- * popup - pop up error dialog windows */ -+ #ifdef HAVE_SYS_PARAM_H ++ #if (defined(__unix__) || defined(unix)) && !defined(USG) + #include <sys/param.h> + #endif |