You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@apr.apache.org by Max Bowsher <ma...@ukf.net> on 2004/07/11 20:41:36 UTC

[PATCH] apr-util: Add an additional platform which has strict shlib linking requirements.

--- configure.in 5 Feb 2004 17:37:40 -0000 1.73
+++ configure.in 8 Mar 2004 19:59:43 -0000
@@ -130,7 +130,7 @@ case "$host_alias" in
     dnl ### apr and expat libraries to the build or it'll die a truly
horrible
     dnl ### death. We now use the apr-config tool to determine the correct
     dnl ### library to link against :)
-*AIX*|*Darwin*|*BeOS*)
+*AIX*|*Darwin*|*BeOS*|CYGWIN*)
     dnl need such stuff as -liconv to be specified when building
libaprutil.la
     EXTRA_OS_LINK='$(APRUTIL_LDFLAGS) $(APRUTIL_LIBS)'
     ;;

Please apply the patch above for now.

However, also:
Why is this conditional necessary? Shouldn't it just work to unconditionally
add $(APRUTIL_LDFLAGS) $(APRUTIL_LIBS) to link commands?

Max.