Project Talk:Apache/Developer Documentation

From Gentoo Wiki
Jump to:navigation Jump to:search
Note
Before creating a discussion or leaving a comment, please read about using talk pages. To create a new discussion, click here. Comments on an existing discussion should be signed using ~~~~:
== Discussion title ==

{{Talk|date = 2024-05-13}}

A comment [[User:Larry|Larry]] 13:52, 13 May 2024 (UTC)
: A reply [[User:Sally|Sally]] 07:19, 1 June 2024 (UTC)
:: Your reply ~~~~

duplicate arguments in template calls

Talk status
This discussion is done.

Please replace

{{CodeBox|title=mod_ldap_userdir-1.1.12 (edited)|lang=bash|1=
src_compile() {
    econf || die "econf failed"
    use ssl && APXS2_ARGS="${APXS2_ARGS} -DTLS=1"
    apache-module_src_compile
}
}}

with

{{CodeBox|title=mod_ldap_userdir-1.1.12 (edited)|lang=bash|1=
src_compile() {
    econf {{!}}{{!}} die "econf failed"
    use ssl && APXS2_ARGS="${APXS2_ARGS} -DTLS=1"
    apache-module_src_compile
}
}}

--Cronolio (talk) 12:54, 1 July 2017 (UTC)

Fixed formatting. --Grknight (talk) 00:48, 8 November 2018 (UTC)