* include/winsvc.h (SERVICE_NO_CHANGE): Use hex constant to avoid
warnings. Thanks to Fabricio D. Rossi <gurusoda@users.sf.net>. * Makefile.in (bindist): Correct process. * lib/Makefile.in (install): Ditto. Thanks to Jeff Bonnggren <jbon@users.sf.net>.
This commit is contained in:
parent
2afa7f5882
commit
296b2a5f17
|
@ -1,3 +1,12 @@
|
||||||
|
2003-03-11 Earnie Boyd <earnie@users.sf.net>
|
||||||
|
|
||||||
|
* include/winsvc.h (SERVICE_NO_CHANGE): Use hex constant to avoid
|
||||||
|
warnings.
|
||||||
|
Thanks to Fabricio D. Rossi <gurusoda@users.sf.net>.
|
||||||
|
* Makefile.in (bindist): Correct process.
|
||||||
|
* lib/Makefile.in (install): Ditto.
|
||||||
|
Thanks to Jeff Bonnggren <jbon@users.sf.net>.
|
||||||
|
|
||||||
2003-03-10 Danny Smith <dannysmith@users.sourceforge.net>
|
2003-03-10 Danny Smith <dannysmith@users.sourceforge.net>
|
||||||
|
|
||||||
* include/rasdlg.h: New file.
|
* include/rasdlg.h: New file.
|
||||||
|
|
|
@ -130,7 +130,7 @@ bindist:
|
||||||
rm -rf $(distdir)
|
rm -rf $(distdir)
|
||||||
mkdir $(distdir)
|
mkdir $(distdir)
|
||||||
chmod 755 $(distdir)
|
chmod 755 $(distdir)
|
||||||
$(MAKE) install prefix=../$(distdir)$(dist_prefix) exec_prefix=../$(distdir)$(dist_prefix)
|
$(MAKE) install prefix=`pwd`/$(distdir)$(dist_prefix) exec_prefix=`pwd`/$(distdir)$(dist_prefix)
|
||||||
rm -f $(distdir)$(TARFILEEXT)
|
rm -f $(distdir)$(TARFILEEXT)
|
||||||
cd $(distdir); $(TAR) $(TARFLAGS)cf ../$(distdir)$(TARFILEEXT) *
|
cd $(distdir); $(TAR) $(TARFLAGS)cf ../$(distdir)$(TARFILEEXT) *
|
||||||
|
|
||||||
|
|
|
@ -20,7 +20,7 @@ extern "C" {
|
||||||
#define SC_MANAGER_LOCK 8
|
#define SC_MANAGER_LOCK 8
|
||||||
#define SC_MANAGER_QUERY_LOCK_STATUS 16
|
#define SC_MANAGER_QUERY_LOCK_STATUS 16
|
||||||
#define SC_MANAGER_MODIFY_BOOT_CONFIG 32
|
#define SC_MANAGER_MODIFY_BOOT_CONFIG 32
|
||||||
#define SERVICE_NO_CHANGE (-1)
|
#define SERVICE_NO_CHANGE 0xffffffff
|
||||||
#define SERVICE_STOPPED 1
|
#define SERVICE_STOPPED 1
|
||||||
#define SERVICE_START_PENDING 2
|
#define SERVICE_START_PENDING 2
|
||||||
#define SERVICE_STOP_PENDING 3
|
#define SERVICE_STOP_PENDING 3
|
||||||
|
|
|
@ -135,7 +135,7 @@ ddk:
|
||||||
|
|
||||||
TEST_OPTIONS = $(ALL_CFLAGS) -DWINVER=0x0666 \
|
TEST_OPTIONS = $(ALL_CFLAGS) -DWINVER=0x0666 \
|
||||||
-Wall -pedantic -Wsystem-headers -c $(srcdir)/test.c -o test.o
|
-Wall -pedantic -Wsystem-headers -c $(srcdir)/test.c -o test.o
|
||||||
.PHONY: test
|
.PHONY: test ddk
|
||||||
test:
|
test:
|
||||||
@echo "Testing w32api..."
|
@echo "Testing w32api..."
|
||||||
@for lang in c c++ objective-c ; do \
|
@for lang in c c++ objective-c ; do \
|
||||||
|
@ -193,7 +193,7 @@ install-headers:
|
||||||
done
|
done
|
||||||
|
|
||||||
install-ddk: install-libraries install-headers
|
install-ddk: install-libraries install-headers
|
||||||
(cd ddk && $(MAKE) install $(FLAGS_TO_PASS) prefix=../$(prefix) exec_prefix=../$(exec_prefix))
|
cd ddk && $(MAKE) install $(FLAGS_TO_PASS)
|
||||||
|
|
||||||
# uninstall headers and libraries from a target specified directory
|
# uninstall headers and libraries from a target specified directory
|
||||||
uninstall: uninstall-ddk uninstall-libraries uninstall-headers
|
uninstall: uninstall-ddk uninstall-libraries uninstall-headers
|
||||||
|
|
Loading…
Reference in New Issue