diff --git a/ubuntu-15.10.sh b/ubuntu-15.10.sh
index a0ddd2c1db70e0aeb31be58fca8c3e63dcc058c8..6338102543b22f4da41820c9020c45acd1046d84 100755
--- a/ubuntu-15.10.sh
+++ b/ubuntu-15.10.sh
@@ -8,6 +8,7 @@ sudo apt-get install \
     autopoint \
     cmake \
     dbus \
+    doxygen \
     g++ \
     gettext \
     gnome-icon-theme-symbolic \
@@ -67,9 +68,12 @@ make install
 cd "${TOP}/lrc"
 mkdir -p build
 cd build
+# If we don't use -DENABLE_STATIC here and on the client,
+# we'd have to point LD_LIBRARY_PATH to the directory containing libringclient.so
 cmake .. \
   -DCMAKE_BUILD_TYPE=Debug \
   -DCMAKE_INSTALL_PREFIX="${INSTALL}/lrc" \
+  -DENABLE_STATIC=true \
   -DRING_BUILD_DIR="${RING}/src"
 make
 make install
@@ -78,8 +82,8 @@ cd "${TOP}/client-gnome"
 mkdir -p build
 cd build
 cmake .. \
-  -DCMAKE_BUILD_TYPE=Debug \
   -DCMAKE_INSTALL_PREFIX="${INSTALL}/client-gnome" \
+  -DENABLE_STATIC=true \
   -DLibRingClient_DIR="${INSTALL}/lrc/lib/cmake/LibRingClient"
 make
 sudo make install