Date: Thursday April 26, 2001 @ 19:45 Author: cameron Update of /home/netrek/cvsroot/Vanilla/gum In directory swashbuckler.fortress.real-time.com:/var/tmp/cvs-serv18519/gum Modified Files: Makefile.am Makefile.in Removed Files: Makefile Log Message: Significant build environment changes from Benjamin `Quisar' Lerman which do the following; - permit compilation with CWD outside source tree, - include robotd in server build, - add configure --with-gum flag, - add configure --with-inl flag, (still needs to adjust .sysdef) - change configure detection of signal style, - allow environment variables CFLAGS and LDFLAGS to be set before configure, - fix a pledit core dump, - change robotd to use limits.h instead of values.h All Makefiles are now removed, replaced by Makefile.in files, which configure uses to generate the Makefiles. Also includes some minor fixes by James Cameron. See ChangeLog **************************************** Index: Vanilla/gum/Makefile.am diff -u Vanilla/gum/Makefile.am:1.8 Vanilla/gum/Makefile.am:1.9 --- Vanilla/gum/Makefile.am:1.8 Thu Dec 30 00:39:57 1999 +++ Vanilla/gum/Makefile.am Thu Apr 26 19:45:19 2001 @@ -16,12 +16,12 @@ gum_LDADD = @GTK_LIBS@ ../ntserv/data.o install-data-local: - test -d pixmaps \ + test -d ${srcdir}/pixmaps \ && install -d -m 0755 $(pkgdatadir)/pixmaps \ - && install -m 0644 pixmaps/* $(pkgdatadir)/pixmaps + && install -m 0644 ${srcdir}/pixmaps/*.xpm $(pkgdatadir)/pixmaps dist-hook: test -d pixmaps \ && mkdir $(distdir)/pixmaps \ - && cp -p pixmaps/* $(distdir)/pixmaps + && cp -p ${srcdir}/pixmaps/*.xpm $(distdir)/pixmaps Index: Vanilla/gum/Makefile.in diff -u Vanilla/gum/Makefile.in:1.11 Vanilla/gum/Makefile.in:1.12 --- Vanilla/gum/Makefile.in:1.11 Mon Apr 23 03:41:50 2001 +++ Vanilla/gum/Makefile.in Thu Apr 26 19:45:19 2001 @@ -305,7 +305,7 @@ @for file in $(DISTFILES); do \ d=$(srcdir); \ if test -d $$d/$$file; then \ - cp -pr $$d/$$file $(distdir)/$$file; \ + cp -pr $$/$$file $(distdir)/$$file; \ else \ test -f $(distdir)/$$file \ || ln $$d/$$file $(distdir)/$$file 2> /dev/null \ @@ -438,14 +438,14 @@ install-data-local: - test -d pixmaps \ + test -d ${srcdir}/pixmaps \ && install -d -m 0755 $(pkgdatadir)/pixmaps \ - && install -m 0644 pixmaps/* $(pkgdatadir)/pixmaps + && install -m 0644 ${srcdir}/pixmaps/*.xpm $(pkgdatadir)/pixmaps dist-hook: test -d pixmaps \ && mkdir $(distdir)/pixmaps \ - && cp -p pixmaps/* $(distdir)/pixmaps + && cp -p ${srcdir}/pixmaps/*.xpm $(distdir)/pixmaps # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded.