diff options
author | Bradley Nicholes <bnicholes@apache.org> | 2005-11-22 01:37:51 +0100 |
---|---|---|
committer | Bradley Nicholes <bnicholes@apache.org> | 2005-11-22 01:37:51 +0100 |
commit | 260a49c506438e1e9b45a9052cc2c61a1fc71db4 (patch) | |
tree | 614dc5f957ea053aaa00ecb211a73d906adeedc2 /NWGNUmakefile | |
parent | PR#37553 (diff) | |
download | apache2-260a49c506438e1e9b45a9052cc2c61a1fc71db4.tar.xz apache2-260a49c506438e1e9b45a9052cc2c61a1fc71db4.zip |
Small description change to indicate which socket library the NLM in built for
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@348053 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'NWGNUmakefile')
-rw-r--r-- | NWGNUmakefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/NWGNUmakefile b/NWGNUmakefile index 2dff4e55bf..4e91cfa8bf 100644 --- a/NWGNUmakefile +++ b/NWGNUmakefile @@ -119,7 +119,12 @@ NLM_NAME = Apache2 # This is used by the link '-desc ' directive. # If left blank, NLM_NAME will be used. # -NLM_DESCRIPTION = Apache Web Server $(VERSION_STR) +ifdef USE_STDSOCKETS +VERSION_SKT = (BSDSOCK) +else +VERSION_SKT = (WINSOCK) +endif +NLM_DESCRIPTION = Apache Web Server $(VERSION_STR) $(VERSION_SKT) # # This is used by the '-threadname' directive. If left blank, |