Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions mkit.profiles.sh
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ profile_postgres()
# building with libressl fails with:
#postgresql/postgresql-11.3/src/backend/libpq/be-secure-openssl.c:1103:63: error: ‘Port’ has no member named ‘peer'’
# strlcpy(ptr, X509_NAME_to_cstring(X509_get_subject_name(port->peer)), len);
add_run_dep openssl
add_run_dep openssl1_1
add_run_dep libxml2
add_run_dep zlib
add_run_dep ncurses
Expand All @@ -112,7 +112,7 @@ profile_postgres()

profile_postgres10()
{
add_run_dep openssl
add_run_dep openssl1_1
add_run_dep libxml2
add_run_dep zlib
add_run_dep ncurses
Expand Down Expand Up @@ -407,6 +407,12 @@ profile_libgit2()
add_run_dep libgit2
}

profile_vim()
{
add_run_dep ncurses
add_run_dep vim
}

profile_mosquitto()
{
add_build_dep cmake
Expand Down
1 change: 1 addition & 0 deletions modules/gcc11/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ build_gcc11()
--with-mpfr=${prefix} \
--with-mpc=${prefix} \
--disable-multilib \
--disable-libiberty \
--disable-lto \
--with-system-zlib \
--disable-nls
Expand Down
19 changes: 19 additions & 0 deletions modules/vim/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
build_vim()
{
typeset rc=0

#[ -d "${prefix}/lib/pkgconfig" ] && export PKG_CONFIG_PATH="${prefix}/lib/pkgconfig"]
#rm $srcdir_vim/src/auto/configure
#rm $srcdir_vim/src/configure

mv $srcdir_vim/src/auto/configure $srcdir_vim/src

sed -i -e 's/auto\///' $srcdir_vim/src/configure

export srcdir_vim="$srcdir_vim/src"

#BADCONFIGURE=yes \
build_gnuconf vim $srcdir_vim --with-tlib=ncurses; rc=$?

return $rc
}