1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-20 00:21:35 +00:00

Mark MAKE_JOBS_SAFE and squash some warnings.

This commit is contained in:
Christian Weisgerber 2009-03-27 18:00:54 +00:00
parent 0b075ee77c
commit d18d623920
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=231125
3 changed files with 22 additions and 2 deletions

View File

@ -17,6 +17,7 @@ COMMENT= Simple logout button
WRKSRC= ${WRKDIR}/xlogout
USE_IMAKE= yes
MAKE_JOBS_SAFE= yes
MAN1= xlogout.1
PLIST_FILES= bin/xlogout \

View File

@ -1,5 +1,5 @@
--- Imakefile.orig Thu Nov 30 00:29:33 1989
+++ Imakefile Fri Nov 6 11:11:21 1998
--- Imakefile.orig 1989-11-30 00:29:33.000000000 +0100
+++ Imakefile 2009-03-27 18:58:05.000000000 +0100
@@ -1,5 +1,5 @@
DEPLIBS = XawClientDepLibs
-LOCAL_LIBRARIES = XawClientsLibs

View File

@ -0,0 +1,19 @@
--- xlogout.c.orig 2009-03-27 18:58:31.000000000 +0100
+++ xlogout.c 2009-03-27 18:59:16.000000000 +0100
@@ -27,6 +27,7 @@
/* An example of popup dialog boxes using X11R4 and the Athena widget set */
#include <stdio.h> /* For the Syntax message */
+#include <stdlib.h>
#include <X11/Intrinsic.h>
#include <X11/StringDefs.h>
#include <X11/Xaw/Cardinals.h>
@@ -48,7 +49,7 @@ static XrmOptionDescRec options[] = {
};
-void main (argc, argv)
+int main (argc, argv)
int argc;
char **argv;
{