Nir Soffer updated libcurl.framework.make: fix symlinks, should link to

Versions, not to ./Versions and indentation improvments
This commit is contained in:
Daniel Stenberg 2006-11-09 21:58:28 +00:00
parent 624745ab20
commit 4eb35406f4
3 changed files with 9 additions and 5 deletions

View File

@ -7,6 +7,10 @@
Changelog
Daniel (9 November 2006)
- Nir Soffer updated libcurl.framework.make:
o fix symlinks, should link to Versions, not to ./Versions
o indentation improvments
- Dmitriy Sergeyev found a SIGSEGV with his test04.c example posted on 7 Nov
2006. It turned out we wrongly assumed that the connection cache was present
when tearing down a connection.

View File

@ -35,6 +35,6 @@ This release would not have looked like this without help, code, reports and
advice from friends like these:
James Housley, Olaf Stueben, Yang Tse, Gisle Vanem, Bradford Bruce,
Ciprian Badescu, Dmitriy Sergeyev
Ciprian Badescu, Dmitriy Sergeyev, Nir Soffer
Thanks! (and sorry if I forgot to mention someone)

View File

@ -120,11 +120,11 @@ $(LIB_DIR)/libcurl.framework: $(OBJECTS) $(LIB_DIR)/libcurl.plist
mkdir -p $(LIB_DIR)/libcurl.framework/Versions/A/Headers
cp $(LIB_DIR)/../include/curl/*.h $(LIB_DIR)/libcurl.framework/Versions/A/Headers
cd $(LIB_DIR)/libcurl.framework; \
ln -fs ./Versions/A/libcurl libcurl; \
ln -fs ./Versions/A/Resources Resources; \
ln -fs ./Versions/A/Headers Headers
ln -fs Versions/A/libcurl libcurl; \
ln -fs Versions/A/Resources Resources; \
ln -fs Versions/A/Headers Headers
cd $(LIB_DIR)/libcurl.framework/Versions; \
ln -fs ./A Current
ln -fs A Current
$(OBJECTS) : $(TMP_DIR)/%.o: $(LIB_DIR)/%.c
$(CC) $(C_OPTIONS) -c $< -o $@