Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1 | Upstream-Status: Inappropriate [configuration] |
| 2 | |
| 3 | Index: apr-util-1.3.4/apu-config.in |
| 4 | =================================================================== |
| 5 | --- apr-util-1.3.4.orig/apu-config.in 2009-01-12 17:08:06.000000000 +0000 |
| 6 | +++ apr-util-1.3.4/apu-config.in 2009-01-12 17:09:00.000000000 +0000 |
| 7 | @@ -134,14 +134,7 @@ |
| 8 | exit 0 |
| 9 | ;; |
| 10 | --includes) |
| 11 | - if test "$location" = "installed"; then |
| 12 | flags="$flags -I$includedir $INCLUDES" |
| 13 | - elif test "$location" = "source"; then |
| 14 | - flags="$flags -I$APU_SOURCE_DIR/include $INCLUDES" |
| 15 | - else |
| 16 | - # this is for VPATH builds |
| 17 | - flags="$flags -I$APU_BUILD_DIR/include -I$APU_SOURCE_DIR/include $INCLUDES" |
| 18 | - fi |
| 19 | ;; |
| 20 | --ldflags) |
| 21 | flags="$flags $LDFLAGS" |
| 22 | @@ -155,28 +148,10 @@ |
| 23 | exit 0 |
| 24 | ;; |
| 25 | --link-ld) |
| 26 | - if test "$location" = "installed"; then |
| 27 | - ### avoid using -L if libdir is a "standard" location like /usr/lib |
| 28 | flags="$flags -L$libdir -l$APRUTIL_LIBNAME" |
| 29 | - else |
| 30 | - flags="$flags -L$APU_BUILD_DIR -l$APRUTIL_LIBNAME" |
| 31 | - fi |
| 32 | ;; |
| 33 | --link-libtool) |
| 34 | - # If the LA_FILE exists where we think it should be, use it. If we're |
| 35 | - # installed and the LA_FILE does not exist, assume to use -L/-l |
| 36 | - # (the LA_FILE may not have been installed). If we're building ourselves, |
| 37 | - # we'll assume that at some point the .la file be created. |
| 38 | - if test -f "$LA_FILE"; then |
| 39 | - flags="$flags $LA_FILE" |
| 40 | - elif test "$location" = "installed"; then |
| 41 | - ### avoid using -L if libdir is a "standard" location like /usr/lib |
| 42 | - # Since the user is specifying they are linking with libtool, we |
| 43 | - # *know* that -R will be recognized by libtool. |
| 44 | - flags="$flags -L$libdir -R$libdir -l$APRUTIL_LIBNAME" |
| 45 | - else |
| 46 | - flags="$flags $LA_FILE" |
| 47 | - fi |
| 48 | + flags="$flags -l$APRUTIL_LIBNAME" |
| 49 | ;; |
| 50 | --apu-la-file) |
| 51 | if test -f "$LA_FILE"; then |