summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2007-10-18 05:32:07 +0000
committerwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2007-10-18 05:32:07 +0000
commitda31fa49beb642a2311658b28fb3acbe62392ee6 (patch)
treebff6e159198a14d480262eebb6dd539d92e0771b /test
parent91adf9ddbfa7789183d0b1f09d8e0899fc401da9 (diff)
downloadlibapr-da31fa49beb642a2311658b28fb3acbe62392ee6.tar.gz
Rename apr_app to clearly fall in our target tree as
[lib]aprapp-1.lib for users who want to make NT-specific binaries (and receive full unicode envvars and command line into their main() in utf8 as if nothing happened). Hook up pre-aprapp steps just like we did for apriconv. Although it's 'named' libaprapp, it's also a static lib and needs to avoid being filled with the libapriconv dll bindings just like other static libraries which depend upon another static lib (the reason for inventing these pre-dsp's). git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@585870 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test')
-rw-r--r--test/Makefile.win4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Makefile.win b/test/Makefile.win
index db88659e3..4d194ae71 100644
--- a/test/Makefile.win
+++ b/test/Makefile.win
@@ -109,11 +109,11 @@ LD = link.exe
!IF "$(MODEL)" == "static"
LOCAL_LIB= ..\$(OUTDIR)\apr-1.lib
-APP_LIB= ..\build\$(OUTDIR)\apr_app-1.lib
+APP_LIB= ..\$(OUTDIR)\aprapp-1.lib
STATIC_CFLAGS = /D APR_DECLARE_STATIC
!ELSE
LOCAL_LIB= ..\$(OUTDIR)\libapr-1.lib
-APP_LIB= ..\build\$(OUTDIR)\libapr_app-1.lib
+APP_LIB= ..\$(OUTDIR)\libaprapp-1.lib
STATIC_CFLAGS =
!ENDIF