summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorVictor Westerhuis <victor@westerhu.is>2021-12-02 16:59:21 +0100
committerVictor Westerhuis <victor@westerhu.is>2021-12-04 01:08:15 +0100
commit882a94938aae254aac05e061043f4c06851ea7fc (patch)
tree1aceadfce018781de4c84d2bddce062c19175763 /configure.ac
parent063c125ad27905a9c00fab897c647c7940cd8f4f (diff)
downloadcolm-882a94938aae254aac05e061043f4c06851ea7fc.tar.gz
Delete automatic detection of running in-source
This cannot work reliably when using a separate build dir. Instead, add a new switch to specify the build directory explicitly. Use libtool to build the output, defaulting to statically linking libcolm.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac7
1 files changed, 0 insertions, 7 deletions
diff --git a/configure.ac b/configure.ac
index fc034f28..167b199b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -421,13 +421,6 @@ test -e src/include/colm || ln -s .. src/include/colm
echo "#define VERSION \"$VERSION\"" > src/version.h
echo "#define PUBDATE \"$PUBDATE\"" >> src/version.h
-if test "x$enable_static" = "xyes"; then
- AC_DEFINE([LINK_STATIC], [1], [Link static lib when invoking C compile and link])
-fi
-
-if test "x$enable_shared" = "xyes"; then
- AC_DEFINE([LINK_SHARED], [1], [Link shared lib when invoking C compile and link])
-fi
dnl
dnl Wrap up.