summaryrefslogtreecommitdiff
path: root/build/make_nw_export.awk
Commit message (Collapse)AuthorAgeFilesLines
* Add proxy_module to the list of symbolsRainer Jung2016-02-061-2/+1
| | | | | | | | | | | | | | | | | detected by Netware export/import awk script. We do not export proxy_module by putting it into modules/proxy/NWGNUproxy explicitely, because all accompanying proxy modules need this symbol to access their config. So let the awk script add proxy_module to the imp file and then export it from mod_proxy and import it to all other mod_proxy_xxx modules via the imp file. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1728780 13f79535-47bb-0310-9956-ffa450edef68
* Remove recent new marker macroPROXY_HOOK_NON_LINKEDRainer Jung2016-02-051-1/+1
| | | | | | | | | | | | | | | | | and instead use PROXY_DECLARE_OPTIONAL_HOOK which is defined to be equal to APR_DECLARE_EXTERNAL_HOOK. Correct explanation for the use of PROXY_DECLARE_OPTIONAL_HOOK. Use PROXY_DECLARE_OPTIONAL_HOOK for the correct hooks. Adjust build/make_nw_export.awk to match the new PROXY_DECLARE_OPTIONAL_HOOK. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1728663 13f79535-47bb-0310-9956-ffa450edef68
* Allow Netware awk script which handles proxyRainer Jung2016-02-051-0/+11
| | | | | | | | | | symbol import/export to differentiate between hooks which call APR_HOOK_LINK() in the C files and those who don't by marking them in the header file. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1728656 13f79535-47bb-0310-9956-ffa450edef68
* Add support for the proxy modules toRainer Jung2016-02-051-2/+8
| | | | | | | | the awk script used to generate Netware symbol import and export files. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1728573 13f79535-47bb-0310-9956-ffa450edef68
* Removed now obsolete function skip from NetWareGuenter Knauf2012-12-221-1/+0
| | | | | | | export list generating script. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1425338 13f79535-47bb-0310-9956-ffa450edef68
* Fixed broken *_DECLARE_DATA section.Guenter Knauf2012-03-151-2/+2
| | | | | | | | | Seems our preprocessor is some crazy and inserts a blank after replacing a define which made the awk script fail. Patch submitted by: normw gknw net. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1301281 13f79535-47bb-0310-9956-ffa450edef68
* NetWare build fixes.Guenter Knauf2011-12-061-2/+2
| | | | | | | Create mod_cache.imp dynamically; fixed mod_cache_disk NLM name. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1210926 13f79535-47bb-0310-9956-ffa450edef68
* Added apreq to NetWare build.Guenter Knauf2011-11-141-2/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1201918 13f79535-47bb-0310-9956-ffa450edef68
* Reverted r1194896.Guenter Knauf2011-10-291-2/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1195057 13f79535-47bb-0310-9956-ffa450edef68
* Some NetWare build tweaks: generate proxy import list.Guenter Knauf2011-10-291-2/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1194896 13f79535-47bb-0310-9956-ffa450edef68
* Removed dependency on sort command for export list.Guenter Knauf2011-03-311-10/+31
| | | | | | | | | Added a shell sort function to the NetWare export script which is only few ms slower than the external sort command; this makes the export list now identical on all build platforms. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1087185 13f79535-47bb-0310-9956-ffa450edef68
* Minor awk tweak.Guenter Knauf2011-03-291-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1086562 13f79535-47bb-0310-9956-ffa450edef68
* Remove traling line endings with Linux builds.Guenter Knauf2011-03-291-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1086556 13f79535-47bb-0310-9956-ffa450edef68
* Create dav.imp dynamically from header to catch all exports.Guenter Knauf2011-03-201-5/+7
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1083540 13f79535-47bb-0310-9956-ffa450edef68
* NetWare build overhaul in order to compile on Linux.Guenter Knauf2011-03-091-1/+1
| | | | | | | Some more fixes ... git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1079614 13f79535-47bb-0310-9956-ffa450edef68
* removed obsolete stuff from NetWare export generator script.Guenter Knauf2009-10-041-8/+0
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@821602 13f79535-47bb-0310-9956-ffa450edef68
* first trial to fix the export list for recent mod_watchdog changes ...Guenter Knauf2009-10-011-2/+10
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@820503 13f79535-47bb-0310-9956-ffa450edef68
* finally fixed NetWare export list (thanks help from rjung).Guenter Knauf2009-07-081-19/+22
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@792154 13f79535-47bb-0310-9956-ffa450edef68
* first trial to add mod_watchdog functions to export list.Guenter Knauf2009-07-071-2/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@791845 13f79535-47bb-0310-9956-ffa450edef68
* some NetWare build improvements.Guenter Knauf2009-07-061-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@791574 13f79535-47bb-0310-9956-ffa450edef68
* for now excluded the ap_mpm_pod_* functions from export list.Guenter Knauf2009-07-051-0/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@791306 13f79535-47bb-0310-9956-ffa450edef68
* update license header textRoy T. Fielding2006-07-111-6/+6
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@420990 13f79535-47bb-0310-9956-ffa450edef68
* Update the last year of copyright.Colm MacCarthaigh2006-04-191-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@395229 13f79535-47bb-0310-9956-ffa450edef68
* Update remaining 2004 copyright notices.Joe Orton2005-06-141-1/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@190592 13f79535-47bb-0310-9956-ffa450edef68
* fix name of The Apache Software FoundationAndré Malo2004-02-091-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@102619 13f79535-47bb-0310-9956-ffa450edef68
* apply Apache License, Version 2.0André Malo2004-02-061-0/+15
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@102521 13f79535-47bb-0310-9956-ffa450edef68
* Fix up the export list so that it is consistent between debug and non-debug ↵Bradley Nicholes2003-03-111-14/+0
| | | | | | builds git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98987 13f79535-47bb-0310-9956-ffa450edef68
* Specify a set of APIs that are normally defined as macros and should not beBradley Nicholes2003-03-071-0/+13
| | | | | | | included in the export list. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98925 13f79535-47bb-0310-9956-ffa450edef68
* Bringing the NetWare export script up to date with other export scriptsBradley Nicholes2002-07-191-0/+21
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96130 13f79535-47bb-0310-9956-ffa450edef68
* Fix export of variables that have "extern" before their AP_DECLARE_DATA.Bradley Nicholes2002-04-081-1/+1
| | | | | | | This includes ap_subreq_core_filter_handle which mod_autoindex.c now needs. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@94551 13f79535-47bb-0310-9956-ffa450edef68
* Added symbol prefixing to the export listBradley Nicholes2002-01-251-0/+4
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@93033 13f79535-47bb-0310-9956-ffa450edef68
* Fixed the export list generation for NetWare to make sure that only real APIsBradley Nicholes2002-01-081-28/+2
| | | | | | | are being exported git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@92777 13f79535-47bb-0310-9956-ffa450edef68
* Excluding macros from the export list outputBradley Nicholes2001-12-111-0/+6
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@92430 13f79535-47bb-0310-9956-ffa450edef68
* Sync'ed the NetWare export AWK script to the Unix scriptBradley Nicholes2001-11-301-0/+7
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@92268 13f79535-47bb-0310-9956-ffa450edef68
* Fixed the AWK script so that it will pick up functions that have beenBradley Nicholes2001-11-191-1/+1
| | | | | | | | declared on multiple lines such as create_connection in connection.h. Otherwise multi-line declared functions are omitted from the export list. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@92044 13f79535-47bb-0310-9956-ffa450edef68
* Consolidated the APR imports to a single import fileBradley Nicholes2001-11-021-2/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@91728 13f79535-47bb-0310-9956-ffa450edef68
* Modified to correctly extract the export listsBradley Nicholes2001-10-231-61/+12
| | | | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@91653 13f79535-47bb-0310-9956-ffa450edef68
* Scripts for setting up the build environment and generating the import listsBradley Nicholes2001-10-221-0/+113
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@91638 13f79535-47bb-0310-9956-ffa450edef68