libs-base/config.mak.in
Adam Fedor 843305494e * configure.ac: Add check for inet_pton. Also check for make-
specified GNUstep.conf file
* config.make.in: Add variable for inet_pton
* Source/inet_pton.c: New file
* GNUmakefile: Use it if needed.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@22586 72102866-910b-0410-8b05-ffd578937521
2006-03-01 23:54:52 +00:00

36 lines
779 B
Makefile

#
# Extra make variables for base library
#
# Copyright (C) 2005 Free Software Foundation
# Copying and distribution of this file, with or without modification,
# are permitted in any medium without royalty provided the copyright
# notice and this notice are preserved.
WHOAMI=@WHOAMI@
DYNAMIC_LINKER=@DYNAMIC_LINKER@
HAVE_LIBXML=@HAVE_LIBXML@
WITH_FFI=@WITH_FFI@
NX_CONST_STRING_CLASS=@NX_CONST_STRING_CLASS@
HAVE_PTHREAD_H=@HAVE_PTHREAD_H@
HAVE_INET_PTON=@HAVE_INET_PTON@
CONFIG_SYSTEM_INCL += @INCLUDE_FLAGS@
ifeq ($(shared),yes)
CONFIG_SYSTEM_LIBS += @LIBS@
CONFIG_SYSTEM_LIB_DIR += @LDIR_FLAGS@
endif
GNUSTEP_BASE_HAVE_LIBXML=@HAVE_LIBXML@
# Default to building only -baseadd
# on non *-gnu-* library combos
ifneq ($(FOUNDATION_LIB),gnu)
add=yes
base=no
endif