diff options
| author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2016-02-02 16:31:24 +0100 |
|---|---|---|
| committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2016-02-06 11:16:00 +0100 |
| commit | 22e63d952edc2831b1844983481ecdca6ee02db8 (patch) | |
| tree | 2c61a40a58452fd91ea4090f6269928e41c8b029 /package/apache | |
| parent | 7290dc1e87b23fe21c75c50b2238004273a0ec5c (diff) | |
| download | buildroot-22e63d952edc2831b1844983481ecdca6ee02db8.tar.gz buildroot-22e63d952edc2831b1844983481ecdca6ee02db8.zip | |
apache, apr: fix atomic handling
Since the apache package was introduced,
--enable-nonportable-atomics=yes was passed when
BR2_ARCH_HAS_ATOMICS. However, Apache doesn't take this option: it
only passes it down when building the APR library. But since we're
building APR separately, this statement had no effect.
So this commit removes the useless code from the Apache package, and
instead adds the appropriate logic to the apr package, using the new
BR2_TOOLCHAIN_HAS_SYNC_x symbols rather than BR2_ARCH_HAS_ATOMICS.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Bernd Kuhls <bernd.kuhls@t-online.de>
Diffstat (limited to 'package/apache')
| -rw-r--r-- | package/apache/apache.mk | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/package/apache/apache.mk b/package/apache/apache.mk index 8e7b6be40d..e752fcc6c5 100644 --- a/package/apache/apache.mk +++ b/package/apache/apache.mk @@ -35,10 +35,6 @@ APACHE_CONF_OPTS = \ --disable-lua \ --disable-luajit -ifeq ($(BR2_ARCH_HAS_ATOMICS),y) -APACHE_CONF_OPTS += --enable-nonportable-atomics=yes -endif - ifeq ($(BR2_PACKAGE_LIBXML2),y) APACHE_DEPENDENCIES += libxml2 # Apache wants the path to the header file, where it can find |

