mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
SSL build fixes
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@13030 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
2815a022bc
commit
e9817499ce
3 changed files with 21 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
|||
2002-03-07 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* SSL/Makefile.posramble: store config.h in system specific subdir.
|
||||
* SSL/Makefile.preamble: Include headers from Source directory
|
||||
so we pick up GSConfig.h
|
||||
|
||||
2002-03-06 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* Source/autogsdoc.m: store and fetch dependency info in .igsdoc
|
||||
|
|
|
@ -68,6 +68,7 @@
|
|||
# Things to do after distcleaning
|
||||
after-distclean::
|
||||
rm -rf SSL.bundle
|
||||
rm -rf $(GNUSTEP_TARGET_DIR)
|
||||
|
||||
# Things to do before checking
|
||||
# before-check::
|
||||
|
@ -78,6 +79,17 @@ after-distclean::
|
|||
config.mak: config.mak.in
|
||||
./configure
|
||||
|
||||
$(GNUSTEP_OBJ_DIR)/GSUnixSSLHandle.o \
|
||||
: $(GNUSTEP_TARGET_DIR)/config.h
|
||||
|
||||
#
|
||||
# The config.h file is specific to a target
|
||||
#
|
||||
$(GNUSTEP_TARGET_DIR)/config.h: ../config.status
|
||||
$(MKDIRS) $(GNUSTEP_TARGET_DIR)
|
||||
-mv config.h $(GNUSTEP_TARGET_DIR)
|
||||
-touch $(GNUSTEP_TARGET_DIR)/config.h
|
||||
|
||||
TAGS: $(DIST_FILES)
|
||||
etags $(DIST_FILES)
|
||||
|
||||
|
|
|
@ -48,7 +48,9 @@ ADDITIONAL_OBJCFLAGS = $(SSLFLAGS)
|
|||
ADDITIONAL_CFLAGS =
|
||||
|
||||
# Additional include directories the compiler should search
|
||||
ADDITIONAL_INCLUDE_DIRS = -I../Headers/gnustep -I../Headers
|
||||
ADDITIONAL_INCLUDE_DIRS = -I./$(GNUSTEP_TARGET_DIR) \
|
||||
-I../Source/$(GNUSTEP_TARGET_DIR) \
|
||||
-I../Headers/gnustep -I../Headers
|
||||
|
||||
# Additional LDFLAGS to pass to the linker
|
||||
ADDITIONAL_LDFLAGS =
|
||||
|
|
Loading…
Reference in a new issue