Skip to content

Commit

Permalink
Merge pull request #24 from larsks/fix/install-prereq
Browse files Browse the repository at this point in the history
Fix install_prereqs.sh scripts for building on Fedora
  • Loading branch information
InterLinked1 authored Nov 12, 2023
2 parents 994842f + 184878f commit 885c5cc
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions scripts/install_prereq.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

# -- Core
PACKAGES_DEBIAN="build-essential git" # make, git
PACKAGES_FEDORA="git gcc binutils-devel"
PACKAGES_FEDORA="git gcc binutils-devel wget autoconf libtool"

# used by libopenarc, libetpan
PACKAGES_DEBIAN="$PACKAGES_DEBIAN make automake pkg-config libtool m4"
Expand Down Expand Up @@ -35,7 +35,7 @@ PACKAGES_FEDORA="$PACKAGES_FEDORA libuuid-devel"

# <bsd/string.h>
PACKAGES_DEBIAN="$PACKAGES_DEBIAN libbsd-dev"
PACKAGES_FEDORA="$PACKAGES_DEBIAN libbsd-devel"
PACKAGES_FEDORA="$PACKAGES_FEDORA libbsd-devel"

# <histedit.h>, <readline/history.h>
PACKAGES_DEBIAN="$PACKAGES_DEBIAN libedit-dev libreadline-dev"
Expand All @@ -47,13 +47,11 @@ PACKAGES_DEBIAN="$PACKAGES_DEBIAN libssh-dev"
PACKAGES_DEBIAN="$PACKAGES_DEBIAN binutils" # objdump
PACKAGES_FEDORA="$PACKAGES_FEDORA libssh-devel"

# lirc (mod_irc_client)
scripts/lirc.sh

# MariaDB (MySQL) dev headers (mod_mysql, mod_mysql_auth)
# mariadb-server is also required to run a local DBMS, but this is not required for either compilation or operation.
# mariadb-server is also required to run a local DBMS, but this is not
# required for either compilation or operation.
PACKAGES_DEBIAN="$PACKAGES_DEBIAN libmariadb-dev libmariadb-dev-compat"
PACKAGES_FEDORA="$PACKAGES_FEDORA mariadb105-devel"
PACKAGES_FEDORA="$PACKAGES_FEDORA mariadb-devel"

# LMDB (mod_lmdb)
PACKAGES_DEBIAN="$PACKAGES_DEBIAN liblmdb-dev"
Expand Down Expand Up @@ -102,6 +100,9 @@ fi

# == Source Install

# lirc (mod_irc_client)
scripts/lirc.sh

# libdiscord (mod_discord)
scripts/libdiscord.sh

Expand Down

0 comments on commit 885c5cc

Please sign in to comment.