summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGaetan Nadon <memsize@videotron.ca>2010-04-12 13:36:10 -0400
committerGaetan Nadon <memsize@videotron.ca>2010-04-12 13:36:10 -0400
commit6dab63a36c5b89fa2de1128538b88e2bbce9a34c (patch)
treeebc8e4d170ab8784cac7b961b56b3572fa271032
parenta1d3a8a54d96b23adf1dd819726e80be1bc0eebb (diff)
config: disable inadvertently re-enabled static library creation
AC_DISABLE_STATIC must be places before AC_PROG_LIBTOOL, requirement which is not documented in libtool. Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index ef7e83e..2746411 100644
--- a/configure.ac
+++ b/configure.ac
@@ -34,8 +34,8 @@ AM_INIT_AUTOMAKE([foreign dist-bzip2])
AM_MAINTAINER_MODE
# Initialize libtool
-AC_PROG_LIBTOOL
AC_DISABLE_STATIC
+AC_PROG_LIBTOOL
# Initialize Autoheader
AH_TOP([#include "xorg-server.h"])