Skip to content

Commit

Permalink
Fix a couple of build issues
Browse files Browse the repository at this point in the history
* buildconfig.h.in does not get generated without 'autoheader' in
  bootstrap.sh
* add the missing '#' to 'Checks for header files' which is meant
  to be a comment. Otherwise, 'configure' will complain about
  'Checks: command not found'
  • Loading branch information
kcwong-verseon committed Feb 3, 2017
1 parent e705ad7 commit 3020adb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bootstrap.sh
Expand Up @@ -14,7 +14,7 @@ command -v libtoolize >/dev/null 2>&1 && libtoolize --force --copy
# Execute glibtoolize as that's what OSX has, usually
command -v glibtoolize >/dev/null 2>&1 && glibtoolize --force --copy

#autoheader # We dont need this (yet?)
autoheader # We dont need this (yet?)

automake --add-missing --copy
autoconf
2 changes: 1 addition & 1 deletion configure.ac
Expand Up @@ -42,7 +42,7 @@ AC_PROG_LN_S
AC_CHECK_LIB([rt], [clock_gettime], [LINK_TO_RT=-lrt], [LINK_TO_RT=])


Checks for header files.
# Checks for header files.
AC_CHECK_HEADERS([arpa/inet.h fcntl.h inttypes.h limits.h netdb.h netinet/in.h stdint.h stdlib.h string.h strings.h sys/socket.h sys/time.h syslog.h unistd.h])

# Checks for typedefs, structures, and compiler characteristics.
Expand Down

0 comments on commit 3020adb

Please sign in to comment.