wolfi-dev / os

Main package repository for production Wolfi images
Other
801 stars 223 forks source link

question regarding memcached official alpine image #352

Closed tuananh closed 1 year ago

tuananh commented 1 year ago

memcached official image is compiled a bit different with the alpine package

In official image, memcached is configured with

# official image
&& ./configure \
        --build="$gnuArch" \
        --enable-extstore \
        --enable-sasl \
        --enable-sasl-pwdb \
        --enable-tls \

vs the configure flags in alpine pkgs

./configure \
        --build=$CBUILD \
        --host=$CHOST \
        --prefix=/usr \
        --enable-sasl \
        --enable-sasl-pwdb \
        --enable-seccomp

I'm not sure how difference is it gonna be in this case. but what if we have this situtation in other packages, what should be the convention here?

kaniini commented 1 year ago

We can merge the options together I think :)