Parcourir la source

introduced shared core/chain options to resolve DSO problems on Solaris (mod_coldfusion)

Christoph Schug il y a 23 ans
Parent
commit
d32ea8c709
1 fichiers modifiés avec 15 ajouts et 1 suppressions
  1. 15 1
      apache/apache.spec

+ 15 - 1
apache/apache.spec

@@ -60,7 +60,7 @@ Distribution: OpenPKG [BASE]
 Group:        Web
 License:      ASF
 Version:      %{V_apache}
-Release:      20030731
+Release:      20030812
 
 #   package options (suexec related)
 %option       with_suexec               yes
@@ -128,6 +128,8 @@ Release:      20030731
 
 #   package options (braindead ones only)
 %option       with_gdbm_ndbm            no
+%option       with_shared_core          no
+%option       with_shared_chain         no
 
 #   fixing implicit inter-module dependencies and correlations
 %if "%{with_mod_php}" == "yes"
@@ -420,6 +422,12 @@ AutoReqProv:  no
       ./configure \
 %if "%{with_mod_ssl}" == "yes"
           --enable-rule=EAPI \
+%endif
+%if "%{with_shared_core}" == "yes"
+          --enable-rule=SHARED_CORE \
+%endif
+%if "%{with_shared_chain}" == "yes"
+          --enable-rule=SHARED_CHAIN \
 %endif
           --target=apache \
           --with-layout=GNU \
@@ -821,6 +829,12 @@ AutoReqProv:  no
 %else
           --disable-rule=EXPAT \
 %endif
+%if "%{with_shared_core}" == "yes"
+          --enable-rule=SHARED_CORE \
+%endif
+%if "%{with_shared_chain}" == "yes"
+          --enable-rule=SHARED_CHAIN \
+%endif
 %if "%{with_mod_layout}" == "yes"
           --activate-module=src/modules/layout/liblayout.a \
 %endif