From 93d01f7bf5ea5fa4aa6f86d9f1431b7397d829d3 Mon Sep 17 00:00:00 2001 From: Spivee Date: Fri, 1 Dec 2017 18:07:11 +1100 Subject: [PATCH] Update README.LIN (autogen.sh, dependencies) I found these dependencies harder to figure out than usual, since I'm used to installing packages with pregenerated `configure` scripts. In particular if `glib` is missing then `configure` will generate with unexpanded macros, which is confusing. This extra paragraph should be helpful for others. Thanks for a great program :) --- desmume/README.LIN | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/desmume/README.LIN b/desmume/README.LIN index 70fff1af0..1caa64ba9 100644 --- a/desmume/README.LIN +++ b/desmume/README.LIN @@ -10,9 +10,14 @@ DeSmuME provides another interface based on libglade, to use * http://glade.gnome.org/ -To build, cd to src/frontend/posix and then run `./autoconf.sh` +To build, first cd to src/frontend/posix and then run `./autogen.sh` -This will create the file `configure`. Run this using `./configure` +This will create the file `configure`. +It does this using the packages `autoconf` and `automake`. +It also requires `libglib2.0-dev` to generate correctly. +(`glib` from the AUR if building on Arch) + +Run this using `./configure` Then build the program by running `make`