ad --with-gdomap-port=

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/branches/stable@33265 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 2011-06-09 17:14:46 +00:00
parent 613717a53f
commit e86988a5d0
7 changed files with 16922 additions and 2872 deletions

View file

@ -1,3 +1,13 @@
2011-06-09 Richard Frith-Macdonald <rfm@gnu.org>
* configure: Regenerate
* config.mak.in:
* configure.ac:
* Source/Makefile.preamble:
* Tools/Makefile.postamble:
* Tools/Makefile.preamble:
Add --with-gdomap-port= to specify an alternative port
2011-06-07 Richard Frith-Macdonald <rfm@gnu.org>
* Source/Additions/GSLock.m:

View file

@ -56,11 +56,15 @@ ADDITIONAL_CPPFLAGS = $(DEFS) $(CONFIG_SYSTEM_DEFS) $(WARN_FLAGS) \
# Additional flags to pass to the Objective-C compiler
#£ADDITIONAL_OBJCFLAGS+=
#ADDITIONAL_OBJCFLAGS+=
# Additional flags to pass to the C compiler
#ADDITIONAL_CFLAGS+=
ifneq ($(GNUSTEP_GDOMAP_PORT_OVERRIDE),no)
ADDITIONAL_CPPFLAGS += -DGDOMAP_PORT_OVERRIDE=$(GNUSTEP_GDOMAP_PORT_OVERRIDE)
endif
# Additional include directories the compiler should search
ADDITIONAL_INCLUDE_DIRS = \
-I../Headers \

View file

@ -62,6 +62,7 @@ after-install::
which gzip && rm -f $(GNUSTEP_DOC_MAN)/man8/$$file.gz \
&& gzip -9 $(GNUSTEP_DOC_MAN)/man8/$$file; \
done$(END_ECHO)
ifeq ($(GNUSTEP_GDOMAP_PORT_OVERRIDE),no)
ifeq ($(GNUSTEP_INSTALL_GDOMAP_AS_SETUID),no)
$(ECHO_NOTHING)echo ""; \
echo "Note: gdomap has not been made setuid to root, so you must"; \
@ -98,6 +99,7 @@ else
echo "************************************************************"; \
$(END_ECHO)
endif
endif
# Things to do before uninstalling
before-uninstall::

View file

@ -38,6 +38,9 @@
# Additional flags to pass to the preprocessor
ADDITIONAL_CPPFLAGS += $(WARN_FLAGS)
ifneq ($(GNUSTEP_GDOMAP_PORT_OVERRIDE),no)
ADDITIONAL_CPPFLAGS += -DGDOMAP_PORT_OVERRIDE=$(GNUSTEP_GDOMAP_PORT_OVERRIDE)
endif
# Additional flags to pass to the Objective-C compiler
#ADDITIONAL_OBJCFLAGS +=

View file

@ -33,6 +33,7 @@ ifeq ($(shared),yes)
endif
GNUSTEP_INSTALL_GDOMAP_AS_SETUID=@GNUSTEP_INSTALL_GDOMAP_AS_SETUID@
GNUSTEP_GDOMAP_PORT_OVERRIDE=@GNUSTEP_GDOMAP_PORT_OVERRIDE@
GNUSTEP_BASE_HAVE_LIBXML=@HAVE_LIBXML@
GNUSTEP_BASE_HAVE_GNUTLS=@HAVE_GNUTLS@

19758
configure vendored

File diff suppressed because it is too large Load diff

View file

@ -2843,6 +2843,20 @@ fi
AC_SUBST(WARN_FLAGS)
#--------------------------------------------------------------------
# Check if we should use an alternative gdomap port
#--------------------------------------------------------------------
AC_ARG_WITH(gdomap-port,
[ --with-gdomap-port=PORT alternative port for gdomap],
gdomap_port="$withval", gdomap_port="no")
if test "$gdomap_port" = "no"; then
GNUSTEP_GDOMAP_PORT_OVERRIDE="$gdomap_port"
else
GNUSTEP_GDOMAP_PORT_OVERRIDE="$gdomap_port"
fi
AC_SUBST(GNUSTEP_GDOMAP_PORT_OVERRIDE)
#--------------------------------------------------------------------
# Check if we should install gdomap as setuid
#--------------------------------------------------------------------