aboutsummaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorMatt Strapp <matt@mattstrapp.net>2024-05-13 14:33:09 -0500
committerMatt Strapp <matt@mattstrapp.net>2024-05-13 14:33:09 -0500
commit0d7386c7529dc106dc12827ce0f2dee91c3945c2 (patch)
tree3070f83eb7f8990d61e21236caa3137203d2b5fa /configure
parentAdd versioning to CMake and Meson (diff)
downloadlocusts-0d7386c7529dc106dc12827ce0f2dee91c3945c2.tar
locusts-0d7386c7529dc106dc12827ce0f2dee91c3945c2.tar.gz
locusts-0d7386c7529dc106dc12827ce0f2dee91c3945c2.tar.bz2
locusts-0d7386c7529dc106dc12827ce0f2dee91c3945c2.tar.lz
locusts-0d7386c7529dc106dc12827ce0f2dee91c3945c2.tar.xz
locusts-0d7386c7529dc106dc12827ce0f2dee91c3945c2.tar.zst
locusts-0d7386c7529dc106dc12827ce0f2dee91c3945c2.zip
Add a C file to make C compilers actually build this into a shared object
Signed-off-by: Matt Strapp <matt@mattstrapp.net>
Diffstat (limited to '')
-rwxr-xr-xconfigure2
-rw-r--r--configure.ac2
2 files changed, 2 insertions, 2 deletions
diff --git a/configure b/configure
index 627bc2a..09f32b3 100755
--- a/configure
+++ b/configure
@@ -616,7 +616,7 @@ PACKAGE_STRING='libocusts 1.0.0'
PACKAGE_BUGREPORT=''
PACKAGE_URL=''
-ac_unique_file="include/locusts.h"
+ac_unique_file="src/locusts.c"
# Factoring default headers for most tests.
ac_includes_default="\
#include <stddef.h>
diff --git a/configure.ac b/configure.ac
index c70a7e0..bf77830 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
AC_INIT([libocusts], [1.0.0])
-AC_CONFIG_SRCDIR([include/locusts.h])
+AC_CONFIG_SRCDIR([src/locusts.c])
AC_CONFIG_AUX_DIR([build-aux])
AC_CONFIG_MACRO_DIRS([m4])
AM_INIT_AUTOMAKE([-Wall -Werror foreign])