vortex.patch 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. Index: configure
  2. --- configure.orig 2007-10-11 17:56:36 +0200
  3. +++ configure 2007-10-13 20:14:04 +0200
  4. @@ -19598,7 +19598,11 @@
  5. if test $vortex_p_t_r = yes; then
  6. - vortex_cv_pthreads_cflags="$flag"
  7. + if test ".$flag" != ".none"; then
  8. + vortex_cv_pthreads_cflags="$flag"
  9. + else
  10. + vortex_cv_pthreads_cflags=""
  11. + fi
  12. break
  13. fi
  14. Index: data/Makefile.in
  15. --- data/Makefile.in.orig 2007-10-11 17:56:34 +0200
  16. +++ data/Makefile.in 2007-10-13 20:07:38 +0200
  17. @@ -199,7 +199,7 @@
  18. sharedstatedir = @sharedstatedir@
  19. sysconfdir = @sysconfdir@
  20. target_alias = @target_alias@
  21. -dtddir = $(datadir)/libvortex
  22. +dtddir = $(datadir)/vortex
  23. dtd_DATA = channel.dtd sasl.dtd tls.dtd xml-rpc-boot.dtd vortex-listener-conf.dtd
  24. EXTRA_DIST = $(dtd_DATA)
  25. all: all-am
  26. Index: src/vortex_tls.c
  27. --- src/vortex_tls.c.orig 2007-09-17 16:53:26 +0200
  28. +++ src/vortex_tls.c 2007-10-13 20:07:38 +0200
  29. @@ -48,6 +48,7 @@
  30. #define LOG_DOMAIN "vortex-tls"
  31. #include <vortex.h>
  32. +#undef boolean /* undefine AXL #define boolean int as it clashes with OpenSSL asn1.h */
  33. #include <openssl/err.h>
  34. /* some keys to store creation handlers and its associate data */
  35. Index: test/Makefile.in
  36. --- test/Makefile.in.orig 2007-10-11 17:56:35 +0200
  37. +++ test/Makefile.in 2007-10-13 20:07:38 +0200
  38. @@ -336,7 +336,7 @@
  39. @ENABLE_POLL_SUPPORT_TRUE@INCLUDE_VORTEX_POLL = -DVORTEX_HAVE_POLL=1
  40. @ENABLE_EPOLL_SUPPORT_TRUE@INCLUDE_VORTEX_EPOLL = -DVORTEX_HAVE_EPOLL=1
  41. @ENABLE_VORTEX_LOG_TRUE@INCLUDE_VORTEX_LOG = -DENABLE_VORTEX_LOG
  42. -certfilesdir = $(datadir)/libvortex
  43. +certfilesdir = $(datadir)/vortex
  44. certfiles_DATA = test-certificate.pem test-private-key.pem
  45. EXTRA_DIST = Makefile.win $(certfiles_DATA) vortex-regression-client.vcproj vortex-regression-listener.vcproj vortex-regression-client.idl
  46. INCLUDES = -I$(top_srcdir)/libvortex/src $(AXL_CFLAGS) $(PTHREAD_CFLAGS) \
  47. Index: vortex.pc.in
  48. --- vortex.pc.in.orig 2007-05-24 13:04:37 +0200
  49. +++ vortex.pc.in 2007-10-13 20:07:38 +0200
  50. @@ -7,5 +7,5 @@
  51. Description: Robust, full featured BEEP implementation (RFC 3080/RFC 3081)
  52. Requires: axl
  53. Version: @VORTEX_VERSION@
  54. -Libs: -L${libdir} -lvortex @TLS_SUPPORT_FLAGS@ @SASL_LIBS@ @PTHREAD_LIBS@
  55. +Libs: -L${libdir} -lvortex @TLS_SUPPORT_FLAGS@ @SASL_LIBS@ @LIBRARIES_LIBS@ @PTHREAD_LIBS@
  56. Cflags: -I${includedir}/vortex @SASL_CFLAGS@ @PTHREAD_CFLAGS@
  57. Index: xml-rpc-gen/Makefile.in
  58. --- xml-rpc-gen/Makefile.in.orig 2007-10-11 17:56:35 +0200
  59. +++ xml-rpc-gen/Makefile.in 2007-10-13 20:07:38 +0200
  60. @@ -222,7 +222,7 @@
  61. sharedstatedir = @sharedstatedir@
  62. sysconfdir = @sysconfdir@
  63. target_alias = @target_alias@
  64. -dtddir = $(datadir)/libvortex
  65. +dtddir = $(datadir)/vortex
  66. dtd_DATA = xml-rpc.dtd
  67. EXTRA_DIST = $(dtd_DATA) $(wildcard *.idl) $(wildcard *.xdl) $(wildcard *.c) _support.c
  68. INCLUDES = -g -Wall -ansi -I. -I$(top_srcdir)/libvortex/src $(AXL_CFLAGS) $(EXARG_CFLAGS) $(PTHREAD_CFLAGS) -DVERSION=\""$(VORTEX_VERSION)"\" -DINSTALL_DIR=\"$(datadir)/libvortex\" -I../src