Commit 468019e9 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

- Gregor Jasny made c-ares link with libtool 's -export-symbols-regex option to

  only expose functions starting with ares_.
parent 7e941baa
Loading
Loading
Loading
Loading
+4 −0
Original line number Original line Diff line number Diff line
  Changelog for the c-ares project
  Changelog for the c-ares project


* May 11 2009 (Daniel Stenberg)
- Gregor Jasny made c-ares link with libtool 's -export-symbols-regex option to
  only expose functions starting with ares_.

* May 2 2009 (Yang Tse)
* May 2 2009 (Yang Tse)
- Use a build-time configured ares_socklen_t data type instead of socklen_t.
- Use a build-time configured ares_socklen_t data type instead of socklen_t.


+2 −1
Original line number Original line Diff line number Diff line
@@ -87,8 +87,9 @@ if NO_UNDEFINED
UNDEF = -no-undefined
UNDEF = -no-undefined
endif
endif


EXPORT_SYMBOLS = -export-symbols-regex '^ares_[[:alnum:]].*'


libcares_la_LDFLAGS = $(UNDEF) $(VER)
libcares_la_LDFLAGS = $(UNDEF) $(VER) $(EXPORT_SYMBOLS)


# Makefile.inc provides the CSOURCES and HHEADERS defines
# Makefile.inc provides the CSOURCES and HHEADERS defines
include Makefile.inc
include Makefile.inc
+2 −1
Original line number Original line Diff line number Diff line
@@ -12,9 +12,10 @@ Fixed:


 o ares_parse_*_reply() functions now return ARES_EBADRESP instead of
 o ares_parse_*_reply() functions now return ARES_EBADRESP instead of
   ARES_EBADNAME if the name in the response failed to decode
   ARES_EBADNAME if the name in the response failed to decode
 o only expose/export symbols starting with 'ares_'


Thanks go to these friendly people for their efforts and contributions:
Thanks go to these friendly people for their efforts and contributions:


 Phil Blundell, Japheth Cleaver
 Phil Blundell, Japheth Cleaver, Yang Tse, Gregor Jasny


Have fun!
Have fun!