Skip to content

Commit

Permalink
modernize configure.ac
Browse files Browse the repository at this point in the history
  • Loading branch information
kosloot committed Aug 24, 2024
1 parent 8a4a0e4 commit ebd269e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/timblserver.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ jobs:
make;
sudo make install;
cd ..;
continue-on-error: true
- name: bootstrap
run: sh bootstrap.sh
- name: compiler-id
Expand Down
13 changes: 3 additions & 10 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,11 @@ AC_CONFIG_SRCDIR([.])
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_HEADERS([config.h])

if test x"${CXXFLAGS+set}" = xset; then
# the user set CXXFLAGS; don't override it.
cxx_flags_were_set=true
else
cxx_flags_were_set=false
fi
if $cxx_flags_were_set; then
CXXFLAGS=$CXXFLAGS
fi
AX_REQUIRE_DEFINED([AX_CXX_COMPILE_STDCXX_17])

# Checks for programs.
AC_PROG_CXX( [g++ c++] )
AC_PROG_CXX
AX_CXX_COMPILE_STDCXX_17

# libtool stuff
LT_INIT
Expand Down

0 comments on commit ebd269e

Please sign in to comment.