From d4e634955c76cc787b661890df3dabfbf39b39f0 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Fri, 13 May 2011 19:48:43 +0200 Subject: [PATCH] libsatsolver: Fix missing __qsort_r. Our version of glibc does not provide __qsort_r so we need to ship another one. --- lfs/libsatsolver | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lfs/libsatsolver b/lfs/libsatsolver index 771430b6b4..778375a2e6 100644 --- a/lfs/libsatsolver +++ b/lfs/libsatsolver @@ -93,6 +93,9 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) # do not support RPM. cd $(DIR_APP) && sed -e "s/DEBIAN/FEDORA/g" -i ext/CMakeLists.txt + # Our version of glibc has no __qsort_r + cd $(DIR_APP) && echo "#define USE_OWN_QSORT" >> src/util.h + cd $(DIR_APP) && mkdir build cd $(DIR_APP)/build && cmake .. -DFEDORA=1 \ -DCMAKE_INSTALL_PREFIX=/usr \ -- 2.39.2