Commit 4eb35406 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

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

Versions, not to ./Versions and indentation improvments
parent 624745ab
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -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.
+1 −1
Original line number Diff line number Diff line
@@ -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)
+4 −4
Original line number Diff line number Diff line
@@ -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 $@