Skip to content

Commit 30916b6

Browse files
Properly check for availability of DES and improve build toolchain (#31)
* Fix testing for availability of DES * Remove configure file, it should be in git anyway * Update autoconf stuff * Change Makefile.am to fix make dist * Add bugfix version to version string and increase version
1 parent d203fac commit 30916b6

File tree

9 files changed

+687
-7498
lines changed

9 files changed

+687
-7498
lines changed

.github/workflows/makefile.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@ jobs:
2020
sudo .github/prepare_ubuntu.sh
2121
2222
- name: configure
23-
run: ./configure
23+
run: |
24+
autoreconf
25+
./configure
2426
2527
- name: Make
2628
run: make
@@ -39,7 +41,9 @@ jobs:
3941
sudo .github/prepare_ubuntu.sh
4042
4143
- name: configure
42-
run: ./configure
44+
run: |
45+
autoreconf
46+
./configure
4347
4448
- name: Make
4549
run: make

INSTALL

Lines changed: 0 additions & 1 deletion
This file was deleted.

INSTALL

Lines changed: 368 additions & 0 deletions
Large diffs are not rendered by default.

Makefile.am

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
OBJS = snmp_bulkget.o utils.o
2-
31
libexec_PROGRAMS = check_interfaces
42

5-
check_interfaces_LDADD = $(OBJS)
3+
include_HEADERS = snmp_bulkget.h utils.h
4+
5+
check_interfaces_SOURCES = check_interfaces.c snmp_bulkget.c utils.c

0 commit comments

Comments
 (0)