* lib/Makefile.in: Add .NOTPARALLEL target since dlltool cannot run in parallel
invocations. * lib/scrnsave.c (WinMain): Trivial change to avoid a compiler warning.
This commit is contained in:
parent
56c29a3c87
commit
79ec82139e
|
@ -1,3 +1,12 @@
|
||||||
|
2001-11-04 Christopher Faylor <cgf@redhat.com>
|
||||||
|
|
||||||
|
* lib/Makefile.in: Add .NOTPARALLEL target since dlltool cannot run in
|
||||||
|
parallel invocations.
|
||||||
|
|
||||||
|
2001-11-03 Christopher Faylor <cgf@redhat.com>
|
||||||
|
|
||||||
|
* lib/scrnsave.c (WinMain): Trivial change to avoid a compiler warning.
|
||||||
|
|
||||||
2001-11-01 Danny Smith <dannysmith@users.sourceforge.net>
|
2001-11-01 Danny Smith <dannysmith@users.sourceforge.net>
|
||||||
|
|
||||||
* include/basetyps.h (DECLARE_INTERFACE): Don't add
|
* include/basetyps.h (DECLARE_INTERFACE): Don't add
|
||||||
|
|
|
@ -115,6 +115,8 @@ res.rc test.c kernel32.c
|
||||||
|
|
||||||
DISTFILES = Makefile.in $(DEF_FILES) $(SOURCES)
|
DISTFILES = Makefile.in $(DEF_FILES) $(SOURCES)
|
||||||
|
|
||||||
|
.NOTPARALLEL:
|
||||||
|
|
||||||
# targets
|
# targets
|
||||||
all: $(LIBS) $(EXTRA_OBJS)
|
all: $(LIBS) $(EXTRA_OBJS)
|
||||||
|
|
||||||
|
|
|
@ -156,6 +156,7 @@ int APIENTRY WinMain(HINSTANCE hInst, HINSTANCE hPrevInst,
|
||||||
case '/':
|
case '/':
|
||||||
case ' ':
|
case ' ':
|
||||||
default:
|
default:
|
||||||
|
;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
LaunchConfig();
|
LaunchConfig();
|
||||||
|
|
Loading…
Reference in New Issue