Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Frontier: LoongArch Port (Tracking Only) #4701

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
12 changes: 6 additions & 6 deletions app-devel/php/autobuild/build
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export EXTENSION_DIR=/usr/lib/php/modules
export PEAR_INSTALLDIR=/usr/share/pear

abinfo "Building and installing PHP ..."
./configure ${AUTOTOOLS_DEF} ${AUTOTOOLS_AFTER} \
./configure ${AUTOTOOLS_DEF[@]} ${AUTOTOOLS_AFTER} \
--without-pear \
--disable-cgi \
--enable-pcntl
Expand All @@ -26,7 +26,7 @@ ln -sfv phar.phar \
"$PKGDIR"/usr/bin/phar

abinfo "Building and installing PHP with Pear module ..."
./configure ${AUTOTOOLS_DEF} ${AUTOTOOLS_AFTER} \
./configure ${AUTOTOOLS_DEF[@]} ${AUTOTOOLS_AFTER} \
--with-pear
make
make install-pear INSTALL_ROOT="$PKGDIR"
Expand All @@ -35,23 +35,23 @@ rm -rfv "$PKGDIR"/usr/share/pear/.{channels,depdb,depdblock,filemap,lock,registr
rm -rfv "$PKGDIR"/.{channels,depdb,depdblock,filemap,lock,registry}

abinfo "Building and installing PHP with CGI and FCGI executable ..."
./configure ${AUTOTOOLS_DEF} ${AUTOTOOLS_AFTER} \
./configure ${AUTOTOOLS_DEF[@]} ${AUTOTOOLS_AFTER} \
--disable-cli \
--enable-cgi
make
install -Dvm755 "$SRCDIR"/sapi/cgi/php-cgi \
"$PKGDIR"/usr/bin/php-cgi

abinfo "Building and installing PHP with Apache/HTTPD module ..."
./configure ${AUTOTOOLS_DEF} ${AUTOTOOLS_AFTER} \
./configure ${AUTOTOOLS_DEF[@]} ${AUTOTOOLS_AFTER} \
--disable-cli \
--with-apxs2
make
install -Dvm755 "$SRCDIR"/libs/libphp.so \
"$PKGDIR"/usr/lib/httpd/modules/libphp.so

abinfo "Building and installing PHP with FPM module ..."
./configure ${AUTOTOOLS_DEF} ${AUTOTOOLS_AFTER} \
./configure ${AUTOTOOLS_DEF[@]} ${AUTOTOOLS_AFTER} \
--disable-cli \
--enable-cgi \
--enable-fpm \
Expand All @@ -76,7 +76,7 @@ sed -e 's|nobody|http|g' \
-i "$PKGDIR"/etc/php/php-fpm.d/www.conf

abinfo "Building and installing PHP with Embed module ..."
./configure ${AUTOTOOLS_DEF} ${AUTOTOOLS_AFTER} \
./configure ${AUTOTOOLS_DEF[@]} ${AUTOTOOLS_AFTER} \
--disable-cli \
--enable-embed=shared
make
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
diff -Naur a/xfsettingsd/xsettings.xml b/xfsettingsd/xsettings.xml
--- a/xfsettingsd/xsettings.xml 2016-09-15 05:47:26.000000000 -0500
+++ b/xfsettingsd/xsettings.xml 2016-10-11 22:15:21.791228217 -0500
diff --git a/xfsettingsd/xsettings.xml b/xfsettingsd/xsettings.xml
index d8fe2ac..75d92c2 100644
--- a/xfsettingsd/xsettings.xml
+++ b/xfsettingsd/xsettings.xml
@@ -6,8 +6,8 @@
<?xml version="1.0" encoding="UTF-8"?>

<channel name="xsettings" version="1.0">
<property name="Net" type="empty">
- <property name="ThemeName" type="empty"/>
Expand Down
4 changes: 2 additions & 2 deletions runtime-common/libplist/autobuild/build
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ mkdir "$SRCDIR"/build{2,3}

cd "$SRCDIR"/build2
PYTHON=/usr/bin/python2 CYTHON=/usr/bin/cython \
../configure ${AUTOTOOLS_DEF} ${AUTOTOOLS_AFTER}
../configure ${AUTOTOOLS_DEF[@]} ${AUTOTOOLS_AFTER}
make
make install DESTDIR="$PKGDIR"

cd "$SRCDIR"/build3
PYTHON=/usr/bin/python3 CYTHON=/usr/bin/cython3 \
../configure ${AUTOTOOLS_DEF} ${AUTOTOOLS_AFTER}
../configure ${AUTOTOOLS_DEF[@]} ${AUTOTOOLS_AFTER}
make
make install DESTDIR="$PKGDIR"

Expand Down